Check Tags #810
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: Check Tags | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run every day at 12:00am and 12:00pm UTC | |
- cron: '0 0,12 * * *' | |
jobs: | |
check-tags: | |
name: Check Tags | |
runs-on: ubuntu-latest | |
env: | |
WP_DEVELOP_REPO: 'https://github.com/WordPress/wordpress-develop.git' | |
WP_PHPUNIT_REPO: ${{ secrets.WP_PHPUNIT_REPO }} | |
outputs: | |
tags-to-build: ${{ steps.tags-to-build.outputs.result }} | |
steps: | |
- name: Generate token | |
uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.BOT_APP_ID }} | |
private_key: ${{ secrets.BOT_PRIVATE_KEY }} | |
- name: Determine tags to build | |
id: tags-to-build | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ steps.generate-token.outputs.token }} | |
debug: 'true' | |
script: | | |
const [wpTags, pkgTags] = await Promise.all([ | |
github.paginate(github.rest.repos.listTags, { | |
owner: 'wordpress', | |
repo: 'wordpress-develop', | |
per_page: 100, | |
}), | |
github.paginate(github.rest.repos.listTags, { | |
owner: context.repo.owner, | |
repo: '${{ secrets.TARGET_REPO_NAME }}', | |
per_page: 100, | |
}), | |
]) | |
function tagEligible(tag) { | |
const [major, minor] = tag.split(/\./).map(Number); | |
return major > 3 || (major === 3 && minor > 6) | |
} | |
const pkgTagNames = pkgTags.map(tag => tag.name); | |
const tagsToBuild = wpTags.filter( | |
tag => tagEligible(tag.name) && ! pkgTagNames.includes(tag.name) | |
) | |
return tagsToBuild.map(tag => tag.name); | |
- name: Inspect | |
run: echo '${{ steps.tags-to-build.outputs.result }}' | jq | |
build-tags: | |
name: Build Tags | |
needs: check-tags | |
if: needs.check-tags.outputs.tags-to-build != '[]' | |
uses: ./.github/workflows/build.yml | |
secrets: inherit | |
keepalive: | |
name: Keepalive | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
steps: | |
# Checkout is needed to determine if keepalive is necessary based on repo activity. | |
- uses: actions/checkout@v4 | |
- uses: gautamkrishnar/keepalive-workflow@v2 |