mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-04-21 01:56:47 +00:00
chore: created local '.github/workflows/backstage-catalog-helper.yml' from remote 'tools/sre_file_sync/backstage-catalog-helper.yml'
This commit is contained in:
parent
18170aebd2
commit
21033d7351
1 changed files with 37 additions and 0 deletions
37
.github/workflows/backstage-catalog-helper.yml
vendored
Normal file
37
.github/workflows/backstage-catalog-helper.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: Backstage Catalog Info Helper
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
jobs:
|
||||
update-catalog-info:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Actions
|
||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Run Backstage Catalog Info Helper
|
||||
uses: cds-snc/backstage-catalog-info-helper-action@v0.3.1
|
||||
with:
|
||||
github_app_id: ${{ secrets.SRE_BOT_RW_APP_ID }}
|
||||
github_app_private_key: ${{ secrets.SRE_BOT_RW_PRIVATE_KEY }}
|
||||
github_organization: cds-snc
|
||||
- name: impersonate Read/Write GH App
|
||||
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
|
||||
id: generate_token
|
||||
with:
|
||||
app_id: ${{ secrets.SRE_BOT_RW_APP_ID }}
|
||||
private_key: ${{ secrets.SRE_BOT_RW_PRIVATE_KEY }}
|
||||
- name: Create pull request
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
with:
|
||||
token: ${{ steps.generate_token.outputs.token}}
|
||||
commit-message: 'Add catalog-info.yaml'
|
||||
branch: 'backstage/catalog-info'
|
||||
title: 'Add catalog-info.yaml'
|
||||
body: 'Adding a basic catalog-info.yaml to start populating the backstage catalog with your components.'
|
||||
labels: 'backstage'
|
||||
add-paths: |
|
||||
catalog-info.yaml
|
Loading…
Add table
Add a link
Reference in a new issue