We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40e04ad commit 7ef550aCopy full SHA for 7ef550a
.github/workflows/ci.yaml
@@ -32,6 +32,8 @@ on:
32
- ".gitmodules"
33
- ".gitattributes"
34
- ".editorconfig"
35
+permissions:
36
+ contents: read # to fetch code (actions/checkout)
37
jobs:
38
lint:
39
name: Check code linting
.github/workflows/pypi_upload.yml
@@ -6,8 +6,12 @@ on:
6
tags:
7
- v[0-9]+.[0-9]+.* # add .* to allow dev releases
8
9
+permissions: {}
10
11
deploy:
12
+ permissions:
13
+ contents: write # to create a release (actions/create-release)
14
+
15
name: pipenv PyPI Upload
16
runs-on: ubuntu-latest
17
env:
0 commit comments