We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d4ee5e commit 9db401bCopy full SHA for 9db401b
1 file changed
.github/workflows/build.yml
@@ -11,13 +11,21 @@ on:
11
- cron: '00 12 * * 1'
12
workflow_dispatch:
13
14
+permissions: {}
15
+
16
jobs:
17
build:
18
runs-on: ubuntu-latest
19
+ permissions:
20
+ contents: write
21
steps:
22
# Checks-out your repository under $GITHUB_WORKSPACE
23
- name: Checkout
24
uses: actions/checkout@v4
25
+ with:
26
+ # The GitHub token is preserved by default but this job doesn't need
27
+ # to be able to push to GitHub.
28
+ persist-credentials: false
29
30
- name: Setup Python
31
uses: actions/setup-python@v5
0 commit comments