Skip to content

Commit

Permalink
ci: Improve support for protected branches, without fledge
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Aug 30, 2024
1 parent 857e04c commit f56b980
Show file tree
Hide file tree
Showing 12 changed files with 211 additions and 215 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/R-CMD-check-status.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Workflow to update the status of a commit for the R-CMD-check workflow
# Necessary because remote PRs cannot update the status of the commit
on:
workflow_run:
workflows:
- rcc
types:
- requested
- completed

name: rcc-status

jobs:
rcc-status:
runs-on: ubuntu-latest

name: "Update commit status"

# Only run if triggered by rcc workflow
if: github.event.workflow_run.name == 'rcc'

steps:
- name: "Update commit status"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -x
if [ "${{ github.event.workflow_run.status }}" == "completed" ]; then
if [ "${{ github.event.workflow_run.conclusion }}" == "success" ]; then
state="success"
else
state="failure"
fi
# Read artifact ID
artifact_id=$(gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
repos/${{ github.repository }}/actions/runs/${{ github.event.workflow_run.id }}/artifacts | jq -r '.artifacts[] | select(.name == "rcc-smoke-sha") | .id')
if [ -n "${artifact_id}" ]; then
# Download artifact
curl -L -o rcc-smoke-sha.zip \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${GH_TOKEN}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{ github.repository }}/actions/artifacts/${artifact_id}/zip
# Unzip artifact
unzip rcc-smoke-sha.zip
# Read artifact
sha=$(cat rcc-smoke-sha.txt)
# Clean up
rm rcc-smoke-sha.zip rcc-smoke-sha.txt
fi
else
state="pending"
fi
if [ -z "${sha}" ]; then
sha=${{ github.event.workflow_run.head_sha }}
fi
html_url=${{ github.event.workflow_run.html_url }}
description=${{ github.event.workflow_run.name }}
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
repos/${{ github.repository }}/statuses/${sha} \
-f "state=${state}" -f "target_url=${html_url}" -f "description=${description}" -f "context=rcc"
shell: bash
161 changes: 44 additions & 117 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
branches:
- main
- master
- release
- cran-*
pull_request:
branches:
- main
Expand Down Expand Up @@ -36,6 +38,8 @@ jobs:
runs-on: ubuntu-latest
outputs:
sha: ${{ steps.commit.outputs.sha }}
versions-matrix: ${{ steps.versions-matrix.outputs.matrix }}
dep-suggests-matrix: ${{ steps.dep-suggests-matrix.outputs.matrix }}

name: "Smoke test: stock R"

Expand All @@ -59,31 +63,34 @@ jobs:
- uses: ./.github/workflows/install
with:
token: ${{ secrets.GITHUB_TOKEN }}
install-r: false
cache-version: rcc-smoke-2
needs: check
extra-packages: any::rcmdcheck r-lib/roxygen2 any::decor r-lib/styler
needs: check, website
# Beware of using dev pkgdown here, has brought in dev dependencies in the past
extra-packages: any::rcmdcheck r-lib/roxygen2 any::decor r-lib/styler pkgdown

- uses: ./.github/workflows/custom/after-install
if: hashFiles('.github/workflows/custom/after-install/action.yml') != ''

- uses: ./.github/workflows/versions-matrix
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
- id: versions-matrix
# Only run for pull requests if the base repo is different from the head repo, always run for other events
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
uses: ./.github/workflows/versions-matrix

- uses: ./.github/workflows/dep-suggests-matrix
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
- id: dep-suggests-matrix
uses: ./.github/workflows/dep-suggests-matrix

- uses: ./.github/workflows/update-snapshots
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository

- uses: ./.github/workflows/style
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository

- uses: ./.github/workflows/roxygenize
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository

- name: Remove config files from previous iteration
run: |
rm -f .github/dep-suggests-matrix.json .github/versions-matrix.json
shell: bash

- id: commit
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
uses: ./.github/workflows/commit
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -92,89 +99,59 @@ jobs:
with:
results: ${{ runner.os }}-smoke-test

# Runs in a separate workflow, because it's using dev pkgdown
# which might bring in other dev dependencies
pkgdown:
needs: rcc-smoke

runs-on: ubuntu-latest

name: "pkgdown"

# Begin custom: services
# End custom: services

steps:
- uses: actions/checkout@v4
with:
ref: ${{ needs.rcc-smoke.outputs.sha }}

- uses: ./.github/workflows/rate-limit
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: ./.github/workflows/pkgdown-build
if: github.event_name != 'push'

- uses: ./.github/workflows/git-identity
- uses: ./.github/workflows/pkgdown-deploy
if: github.event_name == 'push'

- uses: ./.github/workflows/custom/before-install
if: hashFiles('.github/workflows/custom/before-install/action.yml') != ''
# Upload sha as artifact
- run: |
echo -n "${{ steps.commit.outputs.sha }}" > rcc-smoke-sha.txt
shell: bash
- uses: ./.github/workflows/install
- uses: actions/upload-artifact@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
install-r: false
cache-version: pkgdown-1
needs: website
extra-packages: r-lib/pkgdown local::.

- uses: ./.github/workflows/custom/after-install
if: hashFiles('.github/workflows/custom/after-install/action.yml') != ''
name: rcc-smoke-sha
path: rcc-smoke-sha.txt

- uses: ./.github/workflows/pkgdown-build
if: github.event_name != 'push'

- uses: ./.github/workflows/pkgdown-deploy
if: github.event_name == 'push'
rcc-smoke-check-matrix:
runs-on: ubuntu-latest

versions-matrix:
runs-on: ubuntu-22.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
name: "Check matrix"

name: Collect versions
needs:
- rcc-smoke

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ needs.rcc-smoke.outputs.sha }}

- uses: ./.github/workflows/rate-limit
- uses: ./.github/workflows/matrix-check
with:
token: ${{ secrets.GITHUB_TOKEN }}
matrix: ${{ needs.rcc-smoke.outputs.versions-matrix }}

- uses: r-lib/actions/setup-r@v2
- uses: ./.github/workflows/matrix-check
with:
install-r: false
use-public-rspm: true

- id: set-matrix
uses: ./.github/workflows/versions-matrix-read
matrix: ${{ needs.rcc-smoke.outputs.dep-suggests-matrix }}

rcc-full:
needs:
- rcc-smoke
- versions-matrix

runs-on: ${{ matrix.os }}

if: ${{ needs.rcc-smoke.outputs.versions-matrix != '' }}

name: 'rcc: ${{ matrix.os }} (${{ matrix.r }}) ${{ matrix.desc }}'

# Begin custom: services
# End custom: services

strategy:
fail-fast: false
matrix: ${{fromJson(needs.versions-matrix.outputs.matrix)}}
matrix: ${{fromJson(needs.rcc-smoke.outputs.versions-matrix)}}

steps:
- uses: actions/checkout@v4
Expand All @@ -201,72 +178,22 @@ jobs:
with:
results: ${{ runner.os }}-r${{ matrix.r }}

- uses: ./.github/workflows/update-status
if: always()
with:
sha: ${{ needs.rcc-smoke.outputs.sha }}

suggests-matrix:
runs-on: ubuntu-22.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}

name: Collect suggests deps

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: ./.github/workflows/rate-limit
with:
token: ${{ secrets.GITHUB_TOKEN }}

- uses: r-lib/actions/setup-r@v2
with:
install-r: false
use-public-rspm: true

- id: set-matrix
uses: ./.github/workflows/dep-suggests-matrix-read

check-suggests-matrix:
runs-on: ubuntu-22.04
needs: suggests-matrix

name: Check suggests deps

if: ${{ needs.suggests-matrix.outputs.matrix != '' }}

steps:
- name: Install json2yaml
run: |
sudo npm install -g json2yaml
- name: Check matrix definition
run: |
matrix='${{ needs.suggests-matrix.outputs.matrix }}'
echo $matrix
echo $matrix | jq .
echo $matrix | json2yaml
rcc-suggests:
needs:
- rcc-smoke
- suggests-matrix

runs-on: ubuntu-22.04

name: Without ${{ matrix.package }}
if: ${{ needs.rcc-smoke.outputs.dep-suggests-matrix != '' }}

if: ${{ needs.suggests-matrix.outputs.matrix != '' }}
name: Without ${{ matrix.package }}

# Begin custom: services
# End custom: services

strategy:
fail-fast: false
matrix: ${{fromJson(needs.suggests-matrix.outputs.matrix)}}
matrix: ${{fromJson(needs.rcc-smoke.outputs.dep-suggests-matrix)}}

steps:
- uses: actions/checkout@v4
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ runs:
if [ -n "$(git status --porcelain)" ]; then
echo "Changed"
protected=${{ github.ref_protected }}
if [ "${protected}" = "true" ]; then
foreign=${{ github.event.pull_request.head.repo.full_name != github.repository }}
if [ "${foreign}" = "true" ]; then
# https://github.com/krlmlr/actions-sync/issues/44
echo "Can't push to foreign branch"
elif [ "${protected}" = "true" ]; then
current_branch=$(git branch --show-current)
new_branch=gha-commit
new_branch=gha-commit-$(git rev-parse --short HEAD)
git checkout -b ${new_branch}
git add .
git commit -m "chore: Auto-update from GitHub Actions"$'\n'$'\n'"Run: ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}"
Expand All @@ -38,6 +42,7 @@ runs:
fi
gh workflow run rcc -f ref=$(git rev-parse HEAD)
gh pr merge --merge --auto
else
git fetch
if [ -n "${GITHUB_HEAD_REF}" ]; then
Expand All @@ -50,8 +55,9 @@ runs:
git add .
git commit -m "chore: Auto-update from GitHub Actions"$'\n'$'\n'"Run: ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}"
git push -u origin HEAD
# Only set output if changed
echo sha=$(git rev-parse HEAD) >> $GITHUB_OUTPUT
fi
fi
# Unconditionally set the output because it could come from a manually triggered run
echo sha=$(git rev-parse HEAD) >> $GITHUB_OUTPUT
shell: bash
24 changes: 0 additions & 24 deletions .github/workflows/dep-suggests-matrix-read/action.yml

This file was deleted.

Loading

0 comments on commit f56b980

Please sign in to comment.