Sync OTP Releases #2664
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 OTP Releases | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '*/15 * * * *' | |
jobs: | |
sync-releases: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: release_sync | |
bundler-cache: true | |
- name: Set GitHub GraphQL Schema Cache Key | |
id: graphql-cache-key | |
run: echo "cache-key=$(date +'%Y-%m')" >> "$GITHUB_OUTPUT" | |
- name: Cache GitHub GraphQL Schema | |
id: cache-graphql | |
uses: actions/cache@v3 | |
with: | |
key: ${{ steps.graphql-cache-key.outputs.cache-key }} | |
path: | | |
release_sync/gh-graph.json | |
- name: Download GitHub GraphQL Schema | |
working-directory: release_sync | |
if: steps.cache-graphql.outputs.cache-hit != 'true' | |
env: | |
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_KEY }} | |
run: 'curl -L -o gh-graph.json -H "Authorization: Bearer $GITHUB_TOKEN" https://api.github.com/graphql' | |
- name: Sync Releases | |
working-directory: release_sync | |
env: | |
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_KEY }} | |
run: bundle exec rake sync_releases |