Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sad state of the world #244

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/issues-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ jobs:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: svrooij/secret-gate-action@v1
id: secret
with:
inputsToCheck: "ADD_ISSUES_TOKEN"
env:
ADD_ISSUES_TOKEN: ${{ secrets.ADD_ISSUES_TOKEN }}
- uses: actions/[email protected]
if: steps.secret.outputs.inputsChecked == 'true'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did you try the following??

if: secrets.ADD_ISSUES_TOKEN != ''

Maybe it works (I have not tried myself)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You might want to check this Kuadrant/kuadrant-operator#385

Implementing the same for the kuadrant opeator

with:
project-url: https://github.com/orgs/Kuadrant/projects/18
github-token: ${{ secrets.ADD_ISSUES_TOKEN }}
Loading