update descriptions using LLM_descriptor tool #8
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 | |
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-public-demos-validation: | |
runs-on: | |
group: infra1-runners-arc | |
labels: runners-small | |
needs: | |
- prepare-env | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Check if branch matches | |
id: branch-matches | |
run: |- | |
branch=${{ needs.prepare-env.outputs.branch }} | |
branch_matches=$([[ $branch =~ ^master$ ]] && echo true || echo false) | |
echo "branch_matches=$branch_matches" >> "$GITHUB_OUTPUT" | |
- name: Call Jenkins trigger | |
id: call-jenkins | |
uses: gooddata/github-actions-public/jenkins/trigger@master | |
with: | |
server: ${{ secrets.JENKINS_ADDRESS }} | |
folder: gooddata-public-demos | |
job-name: gooddata-public-demos-validation | |
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": "[email protected]:", | |
"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" | |
if: steps.branch-matches.outputs.branch_matches == 'true' | |
ready-to-merge: | |
runs-on: | |
group: infra1-runners-arc | |
labels: runners-small | |
if: always() | |
needs: | |
- prepare-env | |
- gooddata-public-demos-validation | |
steps: | |
- name: Check if needed jobs succeeded | |
uses: re-actors/alls-green@release/v1 | |
with: | |
allowed-skips: ${{ toJSON(needs) }} | |
jobs: ${{ toJSON(needs) }} |