Add overview page to capture checking doc pages (#25235) #2190
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: Add to backporting project | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| add-to-backporting-project: | |
| if: "!contains(github.event.push.head_commit.message, '[Next only]') && | |
| github.repository == 'scala/scala3'" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate GitHub App Token | |
| id: app-token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.SCALA_APP_ID }} | |
| private-key: ${{ secrets.SCALA_APP_PRIVATE_KEY }} | |
| owner: scala | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: coursier/cache-action@v8 | |
| - uses: VirtusLab/scala-cli-setup@v1.12.2 | |
| - run: scala-cli ./project/scripts/addToBackportingProject.scala -- ${{ github.sha }} | |
| env: | |
| GRAPHQL_API_TOKEN: ${{ steps.app-token.outputs.token }} | |