Actions: Match tool-pointer and tool-node-editor to new cursor shapes
#266
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: Release | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [closed] | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: elementary/actions/release@master | |
| env: | |
| GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" | |
| GIT_USER_NAME: "elementaryBot" | |
| GIT_USER_EMAIL: "[email protected]" | |
| with: | |
| release_branch: 'noble' |