Sync all github prs with erlang.github.io/prs/ #808
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync all github prs with erlang.github.io/prs/ | |
## Sync all github prs twice a day | |
on: | |
workflow_dispatch: | |
schedule: | |
## In UTC | |
- cron: '0 */4 * * *' | |
jobs: | |
sync-prs: | |
if: github.repository == 'erlang/otp' | |
concurrency: erlang.github.io-deploy | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
token: ${{ secrets.ERLANG_TOKEN }} | |
repository: 'erlang/erlang.github.io' | |
path: erlang.github.io | |
- name: Update PRs | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
run: | | |
git clone https://github.com/talentdeficit/jsx | |
(cd jsx && rebar3 compile) | |
mkdir -p "${GITHUB_WORKSPACE}/erlang.github.io/prs/" | |
touch "${GITHUB_WORKSPACE}/erlang.github.io/.nojekyll" | |
.github/scripts/sync-github-prs.es erlang/otp "${GITHUB_WORKSPACE}/erlang.github.io/prs/" | |
- name: Deploy to github pages 🚀 | |
run: | | |
cd erlang.github.io | |
set -x | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add . | |
git add -u | |
git update-index --refresh | |
if ! git diff-index --quiet HEAD --; then | |
git commit -m "Update github pages content" | |
git push origin master | |
fi |