Bump @octokit/request from 9.2.0 to 9.2.1 #972
Workflow file for this run
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: Testing the action | |
on: | |
push: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
#if: github.ref == 'refs/heads/main' # don't run on PRs | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- run: npm ci | |
- run: npm run all | |
test-tag-a-user: | |
needs: build | |
runs-on: ubuntu-latest | |
#if: github.ref == 'refs/heads/main' # don't run on PRs or branches | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.3.0 # this will checkout the compiled Typescript | |
#- uses: hmarr/debug-action@v2 | |
- uses: ./ # load and run local action | |
name: Tag a user | |
with: | |
issue: 1 | |
team: rajbos | |
owner: ${{ github.repository_owner }} | |
repo: ${{ github.repository }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |