day20: added 20 picoseconds limit #24
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: Leaderboard | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Leaderboard in README.md | |
env: | |
AOC_SESSION_COOKIE: ${{ secrets.AOC_SESSION_COOKIE }} | |
AOC_LEADERBOARD_ID: ${{ secrets.AOC_LEADERBOARD_ID }} | |
run: ./leaderboard-replace.sh | |
- name: Output README.md changes for debugging | |
run: git diff README.md | |
- name: Commit and Push changes | |
env: | |
GIT_USER_NAME: "${{ github.actor }}" | |
# see https://github.com/actions/checkout#push-a-commit-using-the-built-in-token | |
GIT_USER_EMAIL: "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | |
RUN_URL: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
run: | | |
set -e | |
if git diff --no-patch --exit-code README.md; then | |
echo "README.md unchanged, not committing" | |
exit 0 | |
fi | |
{ | |
echo "README.md: update leaderboard" | |
echo | |
echo "commit generated automatically from" | |
echo "${RUN_URL}" | |
} >/tmp/commit-message.txt | |
git config --global user.name "${GIT_USER_NAME}" | |
git config --global user.email "${GIT_USER_EMAIL}" | |
git commit -a -F /tmp/commit-message.txt | |
git push | |