-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(zuul-deprecation): Add workflows
JIRA: INFRA-3527
- Loading branch information
Showing
2 changed files
with
145 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: check | ||
on: pull_request | ||
jobs: | ||
prepare-env: | ||
runs-on: | ||
group: infra1-runners-arc | ||
labels: runners-small | ||
outputs: | ||
branch: ${{ github.base_ref }} | ||
ref: ${{ github.ref }} | ||
commit: ${{ github.event.pull_request.head.sha }} | ||
pr_number: ${{ github.event.pull_request.number }} | ||
project: ${{ github.repository }} | ||
changed_files: ${{ steps.changed-files.outputs.all_changed_files }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v40 | ||
gooddata-typings-unit-tests-zuul-docker: | ||
runs-on: | ||
group: infra1-runners-arc | ||
labels: runners-small | ||
needs: | ||
- prepare-env | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- name: Call Jenkins trigger | ||
id: call-jenkins | ||
uses: gooddata/github-actions-public/jenkins/trigger@master | ||
with: | ||
server: ${{ secrets.JENKINS_ADDRESS }} | ||
folder: client-libs | ||
job-name: gooddata-typings-unit-tests-zuul-docker | ||
vault-url: ${{ secrets.VAULT_ADDRESS }} | ||
params: |- | ||
{ | ||
"GH_BRANCH": "${{ needs.prepare-env.outputs.branch }}", | ||
"GH_REF": "${{ needs.prepare-env.outputs.ref }}", | ||
"GH_COMMIT": "${{ needs.prepare-env.outputs.commit }}", | ||
"GH_URL": "git@github.com:", | ||
"GH_CHANGE": "${{ needs.prepare-env.outputs.pr_number }}", | ||
"GH_PROJECT": "${{ needs.prepare-env.outputs.project }}", | ||
"BUILD_BY_GITHUB": "true", | ||
"GH_PIPELINE": "check" | ||
} | ||
comment-pr: "true" | ||
ready-to-merge: | ||
runs-on: | ||
group: infra1-runners-arc | ||
labels: runners-small | ||
if: always() | ||
needs: | ||
- prepare-env | ||
- gooddata-typings-unit-tests-zuul-docker | ||
steps: | ||
- name: Check if needed jobs succeeded | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
allowed-skips: ${{ toJSON(needs) }} | ||
jobs: ${{ toJSON(needs) }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: gate | ||
on: | ||
merge_group: | ||
types: | ||
- checks_requested | ||
jobs: | ||
prepare-env: | ||
runs-on: | ||
group: infra1-runners-arc | ||
labels: runners-small | ||
outputs: | ||
branch: ${{ steps.branch.outputs.branch }} | ||
ref: ${{ github.event.merge_group.head_ref }} | ||
commit: ${{ github.event.merge_group.head_sha }} | ||
pr_number: ${{ steps.pr-number.outputs.pr_number }} | ||
project: ${{ github.repository }} | ||
changed_files: ${{ steps.changed-files.outputs.all_changed_files }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v40 | ||
- name: Branch name | ||
id: branch | ||
run: |- | ||
branch=$(echo "${{ github.event.merge_group.base_ref }}" | sed 's/^refs\/heads\///') | ||
echo "branch=$branch" >> "$GITHUB_OUTPUT" | ||
- name: PR number | ||
id: pr-number | ||
run: |- | ||
pr_num=$(echo "${{ github.ref }}" | sed -n 's/.*pr-\([0-9]*\).*/\1/p') | ||
echo "pr_number=$pr_num" >> "$GITHUB_OUTPUT" | ||
gooddata-typings-unit-tests-zuul-docker: | ||
runs-on: | ||
group: infra1-runners-arc | ||
labels: runners-small | ||
needs: | ||
- prepare-env | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- name: Call Jenkins trigger | ||
id: call-jenkins | ||
uses: gooddata/github-actions-public/jenkins/trigger@master | ||
with: | ||
server: ${{ secrets.JENKINS_ADDRESS }} | ||
folder: client-libs | ||
job-name: gooddata-typings-unit-tests-zuul-docker | ||
vault-url: ${{ secrets.VAULT_ADDRESS }} | ||
params: |- | ||
{ | ||
"GH_BRANCH": "${{ needs.prepare-env.outputs.branch }}", | ||
"GH_REF": "${{ needs.prepare-env.outputs.ref }}", | ||
"GH_COMMIT": "${{ needs.prepare-env.outputs.commit }}", | ||
"GH_URL": "git@github.com:", | ||
"GH_CHANGE": "${{ needs.prepare-env.outputs.pr_number }}", | ||
"GH_PROJECT": "${{ needs.prepare-env.outputs.project }}", | ||
"BUILD_BY_GITHUB": "true", | ||
"GH_PIPELINE": "gate" | ||
} | ||
comment-pr: "true" | ||
ready-to-merge: | ||
runs-on: | ||
group: infra1-runners-arc | ||
labels: runners-small | ||
if: always() | ||
needs: | ||
- prepare-env | ||
- gooddata-typings-unit-tests-zuul-docker | ||
steps: | ||
- name: Check if needed jobs succeeded | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
allowed-skips: ${{ toJSON(needs) }} | ||
jobs: ${{ toJSON(needs) }} |