Skip to content

Commit

Permalink
Improved workflow/step names
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlui committed Oct 15, 2024
1 parent a6b1b2e commit fe11bfa
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/eslint-on-push-pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ESLint
name: Lint pushes/PRs

on: [push, pull_request]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sync chatgpt.js to (/starters/chrome && KudoAI/chatgpt.js-chrome-starter)/extension/lib/chatgpt.js
name: Sync chatgpt.js to starters/chrome/extension/lib/ & KudoAI/chatgpt.js-chrome-starter/extension/lib/

on:
push:
Expand Down Expand Up @@ -27,7 +27,7 @@ jobs:
repository: KudoAI/chatgpt.js-chrome-starter
path: KudoAI/chatgpt.js-chrome-starter

- name: Sync chatgpt.js to /starters/chrome/extension/lib/chatgpt.js + update version in manifest.json
- name: Sync chatgpt.js to starters/chrome/extension/lib/chatgpt.js + update version in manifest.json
run: |
cp -f \
"${{ github.workspace }}/KudoAI/chatgpt.js/chatgpt.js" \
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
git config --global commit.gpgsign true
git config --global user.name "kudo-sync-bot"
git config --global user.email "[email protected]"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- name: Push changes to KudoAI/chatgpt.js
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-chrome-starter-changes.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sync /starters/chrome/ to KudoAI/chatgpt.js-chrome-starter/
name: Sync starters/chrome/ to KudoAI/chatgpt.js-chrome-starter/

on:
push:
Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:
repository: KudoAI/chatgpt.js-chrome-starter
path: KudoAI/chatgpt.js-chrome-starter

- name: Sync /starters/chrome/ to KudoAI/chatgpt.js-chrome-starter/
- name: Sync starters/chrome/ to KudoAI/chatgpt.js-chrome-starter/
run: |
rsync -avhr --delete --filter={'P /.*','P /eslint*','P /package*.json'} \
"${{ github.workspace }}/KudoAI/chatgpt.js/starters/chrome/" \
Expand All @@ -48,7 +48,7 @@ jobs:
git config --global commit.gpgsign true
git config --global user.name "kudo-sync-bot"
git config --global user.email "[email protected]"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- name: Push changes to KudoAI/chatgpt.js-chrome-starter
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-en-readme-changes.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sync changes between English readmes in root + docs/
name: Sync English READMEs between root + docs/

on:
push:
Expand All @@ -23,7 +23,7 @@ jobs:
path: KudoAI/chatgpt.js
fetch-depth: 2

- name: Sync README.md between root & docs/
- name: Sync English READMEs between root + docs/
id: sync_readmes
run: |
cd "${{ github.workspace }}/KudoAI/chatgpt.js"
Expand All @@ -49,7 +49,7 @@ jobs:
git config --global commit.gpgsign true
git config --global user.name "kudo-sync-bot"
git config --global user.email "[email protected]"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- name: Push changes to KudoAI/chatgpt.js
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-greasemonkey-starter-changes.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sync /starters/greasemonkey/ to KudoAI/chatgpt.js-greasemonkey-starter/
name: Sync starters/greasemonkey/ to KudoAI/chatgpt.js-greasemonkey-starter/

on:
push:
Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:
repository: KudoAI/chatgpt.js-greasemonkey-starter
path: KudoAI/chatgpt.js-greasemonkey-starter

- name: Sync /starters/greasemonkey/ to KudoAI/chatgpt.js-greasemonkey-starter/
- name: Sync/starters/greasemonkey/ to KudoAI/chatgpt.js-greasemonkey-starter/
run: |
rsync -avhr --delete --filter={'P /.*','P /eslint*','P /package*.json'} \
"${{ github.workspace }}/KudoAI/chatgpt.js/starters/greasemonkey/" \
Expand All @@ -48,7 +48,7 @@ jobs:
git config --global commit.gpgsign true
git config --global user.name "kudo-sync-bot"
git config --global user.email "[email protected]"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- name: Push changes to KudoAI/chatgpt.js-greasemonkey-starter
run: |
Expand Down

0 comments on commit fe11bfa

Please sign in to comment.