Skip to content

Commit

Permalink
fix(PR-41): include the GITHUB_TOKEN already on the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelarranz committed Jan 8, 2024
1 parent e925f01 commit a901bb8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-standard-checks-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: CI Standard Checks Workflow

on:
workflow_call:
secrets:
GITHUB_TOKEN:
required: true
inputs:
skipChecks:
required: true
Expand All @@ -11,9 +14,6 @@ on:
required: true
default: ''
description: 'Optional checks to enable'
githubToken:
required: true
description: 'The github token to get PR info when checking for Jira Issue key'

jobs:
ci-standard-checks:
Expand All @@ -27,7 +27,7 @@ jobs:
- name: CI Standard Checks
uses: Typeform/ci-standard-checks@v1
with:
githubToken: ${{ inputs.githubToken }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
skipChecks: ${{ inputs.skipChecks }}
enableChecks: ${{ inputs.enableChecks }}

0 comments on commit a901bb8

Please sign in to comment.