chore(deps): Update Helm release rollout-operator to v0.49.0 (main) #42966
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 | |
| permissions: | |
| contents: read | |
| jobs: | |
| main: | |
| # We don't run the backporting for PRs from forks because those can't access "loki-github-bot" secrets in vault. | |
| # We don't use GitHub actions app (secrets.GITHUB_TOKEN) because PRs created by the bot don't trigger CI. | |
| # Also only run if the PR is merged, as an extra safe-guard. | |
| if: ${{ ! github.event.pull_request.head.repo.fork && github.event.pull_request.merged == true }} | |
| runs-on: ubuntu-x64 | |
| permissions: | |
| contents: "read" | |
| id-token: "write" | |
| pull-requests: "write" | |
| steps: | |
| - name: Checkout Actions | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| with: | |
| repository: grafana/grafana-github-actions | |
| persist-credentials: false | |
| path: ./actions | |
| ref: 3c62d35c5a66e730186a338e45aeb8fa784e2d56 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: "22" | |
| - name: Install Actions | |
| working-directory: ./actions | |
| run: | | |
| corepack enable | |
| yarn install --immutable | |
| - name: Generate GitHub App Token | |
| id: app-token | |
| uses: grafana/shared-workflows/actions/create-github-app-token@ae92934a14a48b94494dbc06d74a81d47fe08a40 # create-github-app-token/v0.2.2 | |
| with: | |
| github_app: loki-gh-app | |
| - name: Run backport | |
| uses: ./actions/backport | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} | |
| labelsToAdd: "backport" | |
| title: "{{originalTitle}} (backport {{base}})" | |
| removeDefaultReviewers: false |