Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHA workflow backport-commenter.yml #21371

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 108 additions & 0 deletions .github/workflows/backport-commenter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# This workflow is responsible for validating backports and commenting on backport PRs tagging PR authors to merge in their backport PRs.
# It is scheduled to run at 9:00 AM every day and will also run when manually triggered.

## IMPORTANT
# This workflow only has jobs that are enabled to run on consul and are disabled on consul-enterprise.
# Please do not modify this file in consul-enterprise.

name: Backport Commenter
run-name: Validate backports and notify PRs owners
on:
schedule:
- cron: "0 9 * * *"
workflow_dispatch:
inputs:
versions:
description: "A comma seperated string of the x.y versions representing the backport labels to check. Example: 1.13,1.14,1.15"
required: true
type: string
begin-date:
description: Begin Date to check for PRs being merged. In the format of YYYY-MM-DD.
required: true
type: string
# TODO(jmurret): Remove this before we merge this PR.
push:
branches:
- jm/**

env:
# This needs to be updated to the date of the last release.
BPA_COMMENTER_BEGIN_DATE: "2024-06-12"
# This needs to be updated to the versions that are currently being backported.
BPA_COMMENTER_VERSIONS: "1.15,1.16,1.17,1.18,1.19"

jobs:
setup:
name: Setup
if: ${{ !endsWith(github.repository, '-enterprise') }}
runs-on: ubuntu-latest
outputs:
compute-small: ${{ steps.setup-outputs.outputs.compute-small }}
compute-medium: ${{ steps.setup-outputs.outputs.compute-medium }}
compute-large: ${{ steps.setup-outputs.outputs.compute-large }}
compute-xl: ${{ steps.setup-outputs.outputs.compute-xl }}
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- id: setup-outputs
name: Setup outputs
run: ./.github/scripts/get_runner_classes.sh

validate-backports-oss:
if: ${{ !endsWith(github.repository, '-enterprise') }}
container: hashicorpdev/backport-assistant:0.4.4
runs-on: ${{ needs.setup.outputs.compute-small }}
needs:
- setup
steps:
- name: Fetch Secrets
id: secrets
uses: hashicorp/vault-action@v3
with:
url: ${{ vars.CI_VAULT_URL }}
method: ${{ vars.CI_VAULT_METHOD }}
path: ${{ vars.CI_VAULT_PATH }}
jwtGithubAudience: ${{ vars.CI_VAULT_AUD }}
secrets:
kv/data/github/${{ github.repository }} github_token ;

- name: backport commenter
env:
OWNER: hashicorp
REPO: consul
SYNC_REPO: consul-enterprise
GITHUB_TOKEN: ${{ steps.secrets.outputs.github_token }}
run: |
backport-assistant validate \
--owner ${OWNER} --repo ${REPO} --sync-repo ${SYNC_REPO} --versions "${BPA_COMMENTER_VERSIONS}" \
--begin-date "${BPA_COMMENTER_BEGIN_DATE}" --add-comment

validate-backports-enterprise:
if: ${{ !endsWith(github.repository, '-enterprise') }}
container: hashicorpdev/backport-assistant:0.4.4
runs-on: ${{ needs.setup.outputs.compute-small }}
# needs to run serially because github search api limits to 30 req/minute.
# running in parallel will push it over the limit.
needs:
- setup
- validate-backports-oss
steps:
- name: Fetch Secrets
id: secrets
uses: hashicorp/vault-action@v3
with:
url: ${{ vars.CI_VAULT_URL }}
method: ${{ vars.CI_VAULT_METHOD }}
path: ${{ vars.CI_VAULT_PATH }}
jwtGithubAudience: ${{ vars.CI_VAULT_AUD }}
secrets:
kv/data/github/${{ github.repository }} github_token ;

- name: backport commenter
env:
OWNER: hashicorp
REPO: consul-enterprise
GITHUB_TOKEN: ${{ steps.secrets.outputs.github_token }}
run: |
backport-assistant validate \
--owner "${OWNER}" --repo ${REPO} --versions ${BPA_COMMENTER_VERSIONS} \
--begin-date ${BPA_COMMENTER_BEGIN_DATE} --add-comment
Loading