-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add on push action markdown index autobump
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
.github/workflows/push-test-infra-markdown-index-autobump.yml
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,62 @@ | ||
name: push-test-infra-markdown-index-autobump | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '**/*.md' | ||
|
||
env: | ||
AUTOBUMP_CONFIG_PATH: configs/autobump-config/test-infra-markdown-index-autobump-config.yaml | ||
|
||
jobs: | ||
autobump: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
concurrency: | ||
group: post-test-infra-markdown-index-autobump | ||
cancel-in-progress: false | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup git config | ||
run: | | ||
GIT_USERNAME=$(grep "gitName" ${{ env.AUTOBUMP_CONFIG_PATH }} | cut -d '"' -f 2) | ||
GIT_EMAIL=$(grep "gitEmail" ${{ env.AUTOBUMP_CONFIG_PATH }} | cut -d '"' -f 2) | ||
git config user.name "$GIT_USERNAME" | ||
git config user.email "$GIT_EMAIL" | ||
git config --unset-all http.https://github.com/.extraheader | ||
- name: Authenticate in GCP | ||
id: 'auth' | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
project_id: ${{ vars.GCP_KYMA_PROJECT_PROJECT_ID }} | ||
workload_identity_provider: ${{ vars.GH_COM_KYMA_PROJECT_GCP_WORKLOAD_IDENTITY_FEDERATION_PROVIDER }} | ||
|
||
- name: Get kyma bot token from Secret Manager | ||
id: 'secrets' | ||
uses: 'google-github-actions/get-secretmanager-secrets@v2' | ||
with: | ||
secrets: |- | ||
kyma-autobump-token:${{ vars.GCP_KYMA_PROJECT_PROJECT_ID }}/${{ vars.KYMA_AUTOBUMP_BOT_GITHUB_SECRET_NAME }} | ||
- name: Store Github Token for autobumper | ||
run: | | ||
echo "${{ steps.secrets.outputs.kyma-autobump-token }}" > ~/token | ||
- name: Run markdown index autobump | ||
run: | | ||
docker run --rm \ | ||
-v ~/token:/etc/github/token:ro \ | ||
-v ${{ github.workspace }}:/github/workspace \ | ||
--workdir /github/workspace \ | ||
--user $UID \ | ||
europe-docker.pkg.dev/kyma-project/prod/markdown-index:v20241007-aa6bbc21 \ | ||
--config=${{ env.AUTOBUMP_CONFIG_PATH }} \ | ||
--labels-override=kind/chore,area/documentation |