We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdaaacc commit 71ef086Copy full SHA for 71ef086
.github/workflows/main.yml
@@ -7,10 +7,14 @@ on:
7
- master
8
pull_request: {}
9
10
-concurrency:
+concurrency:
11
group: ${{ format('{0}/{1}', github.repository_owner, github.ref) }}
12
cancel-in-progress: true
13
14
+permissions:
15
+ contents: read
16
+ packages: write
17
+
18
jobs:
19
lint:
20
name: Lint
@@ -45,7 +49,7 @@ jobs:
45
49
uses: docker/login-action@v3
46
50
with:
47
51
registry: ghcr.io
48
- username: ${{ github.repository_owner }}
52
+ username: ${{ github.actor }}
53
password: ${{ secrets.GITHUB_TOKEN }}
54
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
55
0 commit comments