Adopters Updater #1056
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: Adopters Updater | |
# // Run on cron every 12 hours | |
on: | |
schedule: | |
- cron: '0 */12 * * *' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check_adopters: | |
if: github.repository_owner == 'adoptium' | |
name: Temurin Adopters | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- run: python3 .github/workflows/fetch-adopters.py | |
- uses: gr2m/create-or-update-pull-request-action@488876a65a2ca38b7eb05e9086166337087f5323 # v1.10.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADOPTIUM_BOT_TOKEN }} | |
with: | |
title: "Update Temurin Adopters" | |
body: "This is an automatically generated pull request, it will be automatically merged if all the CI tests pass." | |
branch: "adopters_bot" | |
commit-message: "adopters: update temurin adopters" | |
author: "adoptium-bot <[email protected]>" |