Skip to content

chore(deps): update dependency ruby to v3.4.1 #363

chore(deps): update dependency ruby to v3.4.1

chore(deps): update dependency ruby to v3.4.1 #363

Workflow file for this run

name: 'Slash Command'
on:
issue_comment:
types:
- created
concurrency:
group: slash-command-${{ github.ref }}
cancel-in-progress: true
jobs:
catalog-command:
name: Catalog
runs-on: ubuntu-24.04
outputs:
continue: ${{ steps.catalog.outputs.continue }}
steps:
# https://github.com/marketplace/actions/create-github-app-token
- name: Create GitHub App Token
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
# https://github.com/marketplace/actions/command-action
- name: Catalog Command
id: catalog
uses: github/command@319d5236cc34ed2cb72a47c058a363db0b628ebe # v1.3.0
with:
github_token: ${{ steps.app-token.outputs.token }}
command: /catalog
reaction: "eyes"
allowed_contexts: "pull_request"
skip_ci: "true"
skip_reviews: "true"
catalog:
needs: catalog-command
if: ${{ needs.catalog-command.outputs.continue == 'true' }}
name: Catalog
uses: ./.github/workflows/wc-firebase-hosting.yml
permissions:
contents: read
pull-requests: write
deployments: write
with:
gh-app-id: ${{ vars.BOT_APP_ID }}
environment: 'development'
project-id: 'tobe-quest-dev'
secrets:
gh-app-private-key: ${{ secrets.BOT_PRIVATE_KEY }}
firebase-service-account: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_DEV }}
gen-command:
name: Gen Command
runs-on: ubuntu-24.04
outputs:
continue: ${{ steps.gen-command.outputs.continue }}
steps:
# https://github.com/marketplace/actions/create-github-app-token
- name: Create GitHub App Token
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
# https://github.com/marketplace/actions/command-action
- name: Gen Command
id: gen-command
uses: github/command@319d5236cc34ed2cb72a47c058a363db0b628ebe # v1.3.0
with:
github_token: ${{ steps.app-token.outputs.token }}
command: /gen
reaction: "eyes"
allowed_contexts: "pull_request"
skip_ci: "true"
skip_reviews: "true"
gen:
needs: gen-command
if: ${{ needs.gen-command.outputs.continue == 'true' }}
name: Gen
uses: ./.github/workflows/wc-auto-correct.yml
with:
gh-app-id: ${{ vars.BOT_APP_ID }}
secrets:
gh-app-private-key: ${{ secrets.BOT_PRIVATE_KEY }}