Skip to content

Commit ca05055

Browse files
bthuilotjszwedko
andauthored
fix(ci): fix publish workflow permissions (#21773)
* ci(github-actions): fix publish workflow permissions Signed-off-by: Bryce Thuilot <bryce.thuilot@datadoghq.com> * ci(github-actions): fix trailing space Signed-off-by: Bryce Thuilot <bryce.thuilot@datadoghq.com> * ci(github-actions): update custom builds Signed-off-by: Bryce Thuilot <bryce.thuilot@datadoghq.com> * Adding permissions to additional workflows that call this publish Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com> --------- Signed-off-by: Bryce Thuilot <bryce.thuilot@datadoghq.com> Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com> Co-authored-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
1 parent cac47ff commit ca05055

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.github/workflows/custom_builds.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Custom Builds
22

3+
permissions:
4+
contents: read
5+
packages: write
6+
37
on:
48
workflow_dispatch: {}
59

.github/workflows/nightly.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Nightly
22

3+
permissions:
4+
contents: read
5+
packages: write
6+
37
on:
48
workflow_dispatch:
59
schedule:

.github/workflows/publish.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Publish
22

3+
permissions:
4+
contents: read
5+
packages: write
6+
37
on:
48
workflow_call:
59
inputs:

.github/workflows/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Release Suite
22

3+
permissions:
4+
contents: read
5+
packages: write
6+
37
on:
48
push:
59
tags:

0 commit comments

Comments
 (0)