Skip to content

feat: add secure input scanning and CODEOWNERS protection (#487) #1208

feat: add secure input scanning and CODEOWNERS protection (#487)

feat: add secure input scanning and CODEOWNERS protection (#487) #1208

Workflow file for this run

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24'
cache: 'npm'
- 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 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 }}