[mimir-distributed-release-5.7] helm: correct nginx removal version from 7.0 to 6.0 #13629
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Backport PR Creator | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| - labeled | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Actions | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: "grafana/grafana-github-actions" | |
| path: ./actions | |
| # pin the version to before https://github.com/grafana/grafana-github-actions/pull/113 because | |
| # we don't want to have the same strict rules for PR labels | |
| ref: d284afd314ca3625c23595e9f62b52d215ead7ce | |
| - name: Install Actions | |
| run: npm install --production --prefix ./actions | |
| - name: Run backport | |
| uses: ./actions/backport | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| labelsToAdd: "backport" | |
| title: "[{{base}}] {{originalTitle}}" |