Skip to content

Commit ab57c7e

Browse files
authored
Split workflows (#177)
[BUG] * `azurerm_nginx_deployment` - add support for the `web_application_firewall` property
1 parent bf21d7d commit ab57c7e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/changelog_entry.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Get Changelog Entry
1+
name: GetChangelogEntry
22

33
permissions:
44
pull-requests: write
@@ -26,9 +26,9 @@ jobs:
2626
env:
2727
CHANGELOG_ENTRY: ${{ steps.pull.outputs.message }}
2828
run: |
29-
mkdir -p ./pr
30-
echo $CHANGELOG_ENTRY > ./pr/changelog_entry
29+
echo $CHANGELOG_ENTRY > changelog_entry.txt
3130
- uses: actions/upload-artifact@v4
3231
with:
3332
name: changelog_entry
34-
path: pr/
33+
path: changelog_entry.txt
34+
overwrite: true

.github/workflows/updateChangelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
workflow_run:
9-
workflows: [Get Changelog Entry]
9+
workflows: [GetChangelogEntry]
1010
types:
1111
- completed
1212

@@ -21,7 +21,7 @@ jobs:
2121
id: get-run-id
2222
run: |
2323
OTHER_REPO="${{ github.repository }}"
24-
WF_NAME="Get Changelog Entry"
24+
WF_NAME="GetChangelogEntry"
2525
RUN_ID=`gh run --repo ${OTHER_REPO} list --workflow ${WF_NAME} --json databaseId --jq .[0].databaseId`
2626
echo "Detected latest run id of ${RUN_ID} for workflow ${WF_NAME}"
2727
echo "run-id=${RUN_ID}" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)