Skip to content

Commit

Permalink
ci: enable source-git automation
Browse files Browse the repository at this point in the history
- commit validation
- pull request validation
- tracker validation
- automatic merging

rhel-only

Related: RHEL-30581
  • Loading branch information
jamacku authored and pvalena committed Jul 17, 2024
1 parent ab2711d commit c8bc806
Show file tree
Hide file tree
Showing 7 changed files with 197 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/advanced-commit-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
policy:
cherry-pick:
upstream:
- github: dracutdevs/dracut
exception:
note:
- rhel-only
- RHEL-only
tracker:
- keyword:
- 'Resolves: '
- 'Related: '
- 'Reverts: '
type: jira
issue-format:
- 'RHEL-\d+$'
url: 'https://issues.redhat.com/browse/'
4 changes: 4 additions & 0 deletions .github/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
labels:
dont-merge: dont-merge
manual-merge: pr/needs-manual-merge
target-branch': ['main']
4 changes: 4 additions & 0 deletions .github/pull-request-validator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
labels:
missing-review: pr/needs-review
changes-requested: pr/changes-requested
missing-failing-ci: pr/needs-ci
28 changes: 28 additions & 0 deletions .github/tracker-validator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
labels:
missing-tracker: tracker/missing
invalid-product: tracker/invalid-product
invalid-component: tracker/invalid-component
unapproved: tracker/unapproved
products:
- Red Hat Enterprise Linux 9
- CentOS Stream 9
- rhel-9.0.0
- rhel-9.0.0.z
- rhel-9.2.0
- rhel-9.2.0.z
- rhel-9.3.0
- rhel-9.3.0.z
- rhel-9.4.0
- rhel-9.4.0.z
- rhel-9.5.0
- rhel-9.5.0.z
- rhel-9.6.0
- rhel-9.6.0.z
- rhel-9.7.0
- rhel-9.7.0.z
- rhel-9.8.0
- rhel-9.8.0.z
- rhel-9.9.0
- rhel-9.9.0.z
- rhel-9.10.0
- rhel-9.10.0.z
28 changes: 28 additions & 0 deletions .github/workflows/gather-metadata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Gather Pull Request Metadata
on:
pull_request:
types: [ opened, reopened, synchronize ]
branches:
- main
- rhel-9.*

permissions:
contents: read

jobs:
gather-metadata:
runs-on: ubuntu-latest

steps:
- name: Repository checkout
uses: actions/checkout@v4

- id: Metadata
name: Gather Pull Request Metadata
uses: redhat-plumbers-in-action/gather-pull-request-metadata@v1

- name: Upload artifact with gathered metadata
uses: actions/upload-artifact@v3
with:
name: pr-metadata
path: ${{ steps.Metadata.outputs.metadata-file }}
70 changes: 70 additions & 0 deletions .github/workflows/source-git-automation-on-demand.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Source git Automation Scheduled/On Demand
on:
schedule:
# Workflow runs every 45 minutes
- cron: '*/45 * * * *'
workflow_dispatch:
inputs:
pr-number:
description: 'Pull Request number/s ; when not provided, the workflow will run for all open PRs'
required: true
default: '0'

permissions:
contents: read

jobs:
# Get all open PRs
gather-pull-requests:
if: github.repository == 'redhat-plumbers/dracut-rhel9'
runs-on: ubuntu-latest

outputs:
pr-numbers: ${{ steps.get-pr-numbers.outputs.result }}
pr-numbers-manual: ${{ steps.parse-manual-input.outputs.result }}

steps:
- id: get-pr-numbers
if: inputs.pr-number == '0'
name: Get all open PRs
uses: actions/github-script@v6
with:
# !FIXME: this is not working if there is more than 100 PRs opened
script: |
const { data: pullRequests } = await github.rest.pulls.list({
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open',
per_page: 100
});
return pullRequests.map(pr => pr.number);
- id: parse-manual-input
if: inputs.pr-number != '0'
name: Parse manual input
run: |
echo "result="[ ${{ inputs.pr-number }} ]"" >> $GITHUB_OUTPUT
shell: bash

validate-pr:
name: 'Validation of Pull Request #${{ matrix.pr-number }}'
needs: [ gather-pull-requests ]
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
pr-number: ${{ inputs.pr-number == 0 && fromJSON(needs.gather-pull-requests.outputs.pr-numbers) || fromJSON(needs.gather-pull-requests.outputs.pr-numbers-manual) }}

permissions:
# required for merging PRs
contents: write
# required for PR comments and setting labels
pull-requests: write

steps:
- name: Source-git Automation
uses: redhat-plumbers-in-action/source-git-automation@v1
with:
pr-number: ${{ matrix.pr-number }}
jira-api-token: ${{ secrets.JIRA_API_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
46 changes: 46 additions & 0 deletions .github/workflows/source-git-automation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Source git Automation
on:
workflow_run:
workflows: [ Gather Pull Request Metadata ]
types:
- completed

permissions:
contents: read

jobs:
download-metadata:
if: >
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success' &&
github.repository == 'redhat-plumbers/dracut-rhel9'
runs-on: ubuntu-latest

outputs:
pr-metadata: ${{ steps.Artifact.outputs.pr-metadata-json }}

steps:
- id: Artifact
name: Download Artifact
uses: redhat-plumbers-in-action/download-artifact@v1
with:
name: pr-metadata

source-git-automation:
needs: [ download-metadata ]
runs-on: ubuntu-latest

permissions:
# required for merging PRs
contents: write
# required for PR comments and setting labels
pull-requests: write


steps:
- name: Source-git Automation
uses: redhat-plumbers-in-action/source-git-automation@v1
with:
pr-metadata: ${{ needs.download-metadata.outputs.pr-metadata }}
jira-api-token: ${{ secrets.JIRA_API_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c8bc806

Please sign in to comment.