-
-
Notifications
You must be signed in to change notification settings - Fork 117
37 lines (30 loc) · 1.03 KB
/
check-adopters.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
permissions:
contents: write
jobs:
check_adopters:
if: github.repository_owner == 'adoptium'
name: Temurin Adopters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
persist-credentials: false
- run: python3 .github/workflows/fetch-adopters.py
- uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee # v1
env:
GITHUB_TOKEN: ${{ secrets.ADOPTIUM_BOT_TOKEN }}
with:
title: "Update Project 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]>"