From 5663fa567c0d15bfe95c415c4e7bbf66c470e286 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 6 Jan 2021 15:09:19 +0100 Subject: [PATCH] TechDocs: Remove failing TechDocs project board workflow The workflow can not run on PRs created from a fork because secrets are not shared in GitHub actions with forks. To avoid having a failed workflow in some PRs, this condition is being added on the job. --- .github/workflows/techdocs-project-board.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/techdocs-project-board.yml b/.github/workflows/techdocs-project-board.yml index 679abe6536..c982b219ba 100644 --- a/.github/workflows/techdocs-project-board.yml +++ b/.github/workflows/techdocs-project-board.yml @@ -16,6 +16,7 @@ jobs: assign_issue_or_pr_to_project: runs-on: ubuntu-latest name: Triage + if: ${{ env.MY_GITHUB_TOKEN }} != null steps: - name: Assign new issue to Incoming based on its title. uses: srggrs/assign-one-project-github-action@1.2.0