We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f181d5a commit 3538e5eCopy full SHA for 3538e5e
.github/workflows/_sandbox.yaml
@@ -10,6 +10,9 @@ on:
10
paths-ignore:
11
- "**.md"
12
13
+env:
14
+ DEFAULT_MANIFEST_ARTIFACT_NAME: bumped-manifest
15
+
16
permissions:
17
contents: read # to fetch code
18
actions: write # to cancel previous workflows
@@ -42,7 +45,7 @@ jobs:
42
45
id: manifest-branch
43
46
shell: bash -x -e {0}
44
47
run: |
- BUMP_MANIFEST=${{ github.event_name == 'schedule' || inputs.BUMP_MANIFEST || 'false' }}
48
+ BUMP_MANIFEST=${{ 'true' }}
49
MERGE_BUMPED_MANIFEST=${{ github.event_name == 'schedule' || inputs.MERGE_BUMPED_MANIFEST || 'false' }}
50
# Prepend nightly manifest branch with "z" to make it appear at the end
51
if [[ "$BUMP_MANIFEST" == "true" ]]; then
0 commit comments