Test permissions #2
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: Test permissions | |
| on: | |
| workflow_dispatch: | |
| #permissions: | |
| # contents: read | |
| jobs: | |
| job: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: | | |
| export GIT_AUTHOR_NAME=matticbot | |
| export GIT_AUTHOR_EMAIL=matticbot@users.noreply.github.com | |
| export GIT_COMMITTER_NAME=matticbot | |
| export GIT_COMMITTER_EMAIL=matticbot@users.noreply.github.com | |
| git tag permissions-test | |
| git push origin permissions-test |