From 4745372ce97aa6057892163b1fe50c169984cdf1 Mon Sep 17 00:00:00 2001 From: Uri Bar <106860404+staycoolcall911@users.noreply.github.com> Date: Tue, 29 Nov 2022 12:59:45 +0200 Subject: [PATCH] fix: using a specific version for add-to-project (#800) Using a specific version for add-to-project as recommended by the [author of the tool](https://github.com/actions/add-to-project/issues/239). *By submitting this pull request, I confirm that my contribution is made under the terms of the [Monada Contribution License](https://docs.winglang.io/terms-and-policies/contribution-license.html)*. --- .github/workflows/issue-backlogger.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue-backlogger.yml b/.github/workflows/issue-backlogger.yml index ce0f075e73b..59360abeb3e 100644 --- a/.github/workflows/issue-backlogger.yml +++ b/.github/workflows/issue-backlogger.yml @@ -8,7 +8,7 @@ jobs: name: "Add issue to backlog" runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@RELEASE_VERSION + - uses: actions/add-to-project@v0.4.0 with: project-url: https://github.com/orgs/winglang/projects/2 github-token: ${{ secrets.PROJEN_GITHUB_TOKEN }}