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 411ce3c commit 465c3a2Copy full SHA for 465c3a2
.github/workflows/CI.yml
@@ -42,7 +42,13 @@ jobs:
42
changepacks:
43
name: changepacks
44
runs-on: ubuntu-latest
45
- permissions: write-all
+ permissions:
46
+ # create pull request comments
47
+ pull-requests: write
48
+
49
+ # Actions > General > Workflow permissions for creating pull request
50
+ # Create brench to create pull request
51
+ contents: write
52
needs:
53
- test
54
steps:
@@ -51,8 +57,8 @@ jobs:
57
id: changepacks
58
with:
59
publish: true
- env:
55
- CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
60
+ # env:
61
+ # CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
56
62
outputs:
63
changepacks: ${{ steps.changepacks.outputs.changepacks }}
64
release_assets_urls: ${{ steps.changepacks.outputs.release_assets_urls }}
0 commit comments