We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6560c commit 34eb05fCopy full SHA for 34eb05f
1 file changed
.github/workflows/test-permissions.yml
@@ -0,0 +1,22 @@
1
+name: Test permissions
2
+on:
3
+ workflow_dispatch:
4
+
5
+#permissions:
6
+# contents: read
7
8
+jobs:
9
+ job:
10
+ name: Test
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v5
14
15
+ - run: |
16
+ export GIT_AUTHOR_NAME=matticbot
17
+ export GIT_AUTHOR_EMAIL=matticbot@users.noreply.github.com
18
+ export GIT_COMMITTER_NAME=matticbot
19
+ export GIT_COMMITTER_EMAIL=matticbot@users.noreply.github.com
20
21
+ git tag permissions-test
22
+ git push origin permissions-test
0 commit comments