Skip to content

Commit 44cdb3a

Browse files
committed
Fix workflow
1 parent 3d7fbba commit 44cdb3a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/dist-update-notification.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ jobs:
2020
MESSAGE="Directory \`dist-arch\` has been updated.\n"
2121
MESSAGE+="Commit HASH: ${{ github.sha }}\n"
2222
MESSAGE+="Commit message: ${{ github.event.head_commit.message }}\n"
23+
REPO_OWNER="${{ github.repository.owner }}"
24+
REPO_NAME="${{ github.repository.name }}"
2325
2426
DISCUSSION_NODE_ID=$(gh api graphql -f query='
2527
query {
26-
repository( owner: "'${{ github.repository.owner }}'", name: "'${{ github.repository.name }}'" )
28+
repository( owner: '${REPO_OWNER}', name: '${REPO_NAME}' )
2729
{ discussion(number: '${DISCUSSION_NUMBER}') { id } }
2830
}' | \
2931
jq -r '.data.repository.discussion.id')

dist-arch/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Install scripts for Arch Linux
2-
32
## Old Dependency Installation Method
43
The old deps install method mainly involved `./scriptdata/dependencies.conf` (which has been removed now).
54

0 commit comments

Comments
 (0)