ci: split single workflow into scheduled and non-scheduled

This commit is contained in:
Maxim Schram 2023-10-20 10:44:58 -04:00
parent b1247edd94
commit 3e750062ea
3 changed files with 94 additions and 63 deletions

View file

@ -5,11 +5,6 @@ on:
pull_request: # Runs whenever a pull request is created or updated
push: # Runs whenever a commit is pushed to the repository
branches: [master, tx-pull-manual]
schedule:
# daily-tx-pull (e.g., daily at 3 AM UTC)
- cron: "0 3 * * *"
# daily-help-update (e.g., daily at 5 AM UTC)
- cron: "0 5 * * *"
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
@ -77,61 +72,3 @@ jobs:
git tag $RELEASE_VERSION
git push origin $RELEASE_VERSION
fi
daily-help-update:
runs-on: ubuntu-latest
env:
# Organization-wide secrets
FRESHDESK_TOKEN: ${{ secrets.FRESHDESK_TOKEN }}
TX_TOKEN: ${{ secrets.TX_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: "npm"
node-version-file: ".nvmrc"
- name: Install dependencies
run: |
npm ci
npx browserslist@latest --update-db
- name: Sync help
run: npm run sync:help
daily-tx-pull:
runs-on: ubuntu-latest
env:
# Organization-wide secrets
TX_TOKEN: ${{ secrets.TX_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: "npm"
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Pull editor and www translations
run: |
npm run pull:editor
npm run pull:www
npm run test
- name: Commit translation updates
run: |
git config --global user.email $(git log --pretty=format:"%ae" -n1)
git config --global user.name $(git log --pretty=format:"%an" -n1)
git add .
if git diff --cached --exit-code --quiet; then
echo "Nothing to commit."
else
git commit -m "pull new editor translations from Transifex"
git push origin HEAD:master
fi

41
.github/workflows/daily-help-update.yml vendored Normal file
View file

@ -0,0 +1,41 @@
name: Daily Help Update
on:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
schedule:
# daily-help-update (e.g., daily at 5 AM UTC)
- cron: "0 5 * * *"
concurrency:
group: "${{ github.workflow }}"
cancel-in-progress: true
permissions:
contents: write # publish a GitHub release
pages: write # deploy to GitHub Pages
issues: write # comment on released issues
pull-requests: write # comment on released pull requests
jobs:
daily-help-update:
runs-on: ubuntu-latest
env:
# Organization-wide secrets
FRESHDESK_TOKEN: ${{ secrets.FRESHDESK_TOKEN }}
TX_TOKEN: ${{ secrets.TX_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: "npm"
node-version-file: ".nvmrc"
- name: Install dependencies
run: |
npm ci
npx browserslist@latest --update-db
- name: Sync help
run: npm run sync:help

53
.github/workflows/daily-tx-pull.yml vendored Normal file
View file

@ -0,0 +1,53 @@
name: Daily TX Pull
on:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
schedule:
# daily-tx-pull (e.g., daily at 3 AM UTC)
- cron: "0 3 * * *"
concurrency:
group: "${{ github.workflow }}"
cancel-in-progress: true
permissions:
contents: write # publish a GitHub release
pages: write # deploy to GitHub Pages
issues: write # comment on released issues
pull-requests: write # comment on released pull requests
jobs:
daily-tx-pull:
runs-on: ubuntu-latest
env:
# Organization-wide secrets
TX_TOKEN: ${{ secrets.TX_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: "npm"
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Pull editor and www translations
run: |
npm run pull:editor
npm run pull:www
npm run test
- name: Commit translation updates
run: |
git config --global user.email $(git log --pretty=format:"%ae" -n1)
git config --global user.name $(git log --pretty=format:"%an" -n1)
git add .
if git diff --cached --exit-code --quiet; then
echo "Nothing to commit."
else
git commit -m "pull new editor translations from Transifex"
git push origin HEAD:master
fi