mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-28 02:34:21 +01:00
Bumps [suzuki-shunsuke/pinact-action](https://github.com/suzuki-shunsuke/pinact-action) from 0.1.2 to 1.0.0.
- [Release notes](https://github.com/suzuki-shunsuke/pinact-action/releases)
- [Commits](d735505f3d...49cbd6acd0)
---
updated-dependencies:
- dependency-name: suzuki-shunsuke/pinact-action
dependency-version: 1.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
794 B
YAML
35 lines
794 B
YAML
name: Run Pinact
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
- '.github/workflows/**'
|
|
- '.github/actions/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-pinact
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
pinact:
|
|
name: pinact
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 3
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Pin actions
|
|
uses: suzuki-shunsuke/pinact-action@49cbd6acd0dbab6a6be2585d1dbdaa43b4410133 # v1.0.0
|
|
with:
|
|
app_id: ${{ vars.BOT_APP_ID }}
|
|
app_private_key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
|