We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec0f22 commit 32541cfCopy full SHA for 32541cf
.github/workflows/pr-closed.yml
@@ -2,6 +2,10 @@ on:
2
pull_request:
3
types: [closed]
4
5
+permissions:
6
+ id-token: write
7
+ contents: read
8
+
9
jobs:
10
clean-cloudsmith:
11
if: github.repository == 'analogdevicesinc/linux'
@@ -26,7 +30,9 @@ jobs:
26
30
27
31
- name: Delete PR artifacts from Cloudsmith
28
32
run: |
29
- curl -sO https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/main/utils/cloudsmith_utils/cloudsmith_helper.py
33
+ curl -sO -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
34
+ https://raw.githubusercontent.com/analogdevicesinc/wiki-scripts/main/utils/cloudsmith_utils/cloudsmith_helper.py
35
36
python cloudsmith_helper.py \
37
--repo sdg-linux \
38
--method remove_item_from_location \
0 commit comments