Skip to content

Commit

Permalink
gst
Browse files Browse the repository at this point in the history
  • Loading branch information
BobrImperator committed Sep 21, 2023
1 parent ef18ca2 commit 8ae04e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/twios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
git config --global user.name "TWIOS Dev"
- name: Generate Comment
run: |
GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN ./bin/this-week.sh comment > comment.txt
GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh comment > comment.txt
- name: Generate TWIOS
run: GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN ./bin/this-week.sh
run: GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh
- name: Push new TWIOS
run: |
FORMATTED_DATE="$(date +"%Y-%m-%d")"
Expand All @@ -59,9 +59,9 @@ jobs:
git config --global user.name "TWIOS Dev"
- name: Read PR comment body
run: |
GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN ./bin/this-week.sh comment --comment="${{ github.event.pull_request.body }}"
GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh comment --comment="${{ github.event.pull_request.body }}"
- name: Generate TWIOS
run: GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN ./bin/this-week.sh -edit
run: GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh -edit
- name: Push updated TWIOS
run: |
git add **/*.md **/*.json && git commit -m "Edited $TWIOS_PR_REF"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"percy": "percy snapshot",
"crawl": "node scripts/crawl.js",
"gravityci": "gravityci",
"this-week": "./bin/this-week.sh"
"this-week": "bash bin/this-week.sh"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
Expand Down

0 comments on commit 8ae04e7

Please sign in to comment.