Bump sdkman/sdkman-release-action from 1f2d4209b4f5a38721d4ae20014ea8… #1108
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]')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: coursier/cache-action@v6 | |
| - uses: VirtusLab/[email protected] | |
| - run: scala-cli ./project/scripts/addToBackportingProject.scala -- ${{ github.sha }} | |
| env: | |
| GRAPHQL_API_TOKEN: ${{ secrets.GRAPHQL_API_TOKEN }} | |