Merge pull request #196 from ponkio-o/tagpr-from-v1.1.7 #189
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: tagpr | |
| on: | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| tagpr: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: read | |
| steps: | |
| - name: Generate token | |
| id: generate_token | |
| uses: actions/[email protected] | |
| with: | |
| app-id: ${{ secrets.APP_ID }} | |
| private-key: ${{ secrets.PRIVATE_KEY }} | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Install aqua | |
| uses: aquaproj/[email protected] | |
| with: | |
| aqua_version: v2.55.1 | |
| - name: Run tagpr | |
| run: tagpr | |
| env: | |
| GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} |