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

[Question] For label property how to represent multiple labels? #187

Open
melloware opened this issue Nov 13, 2023 · 3 comments
Open

[Question] For label property how to represent multiple labels? #187

melloware opened this issue Nov 13, 2023 · 3 comments
Assignees
Labels
question Further information is requested

Comments

@melloware
Copy link

IF I have this...

labels: "Resolution: Cannot Replicate Status: Needs Reproducer"

How does your code know to do Resolution: Cannot Replicate AND Status: Needs Reproducer should it be comma separated?

@melloware melloware added the question Further information is requested label Nov 13, 2023
@xrkffgg
Copy link
Member

xrkffgg commented Nov 23, 2023

Resolution: Cannot Replicate,Status: Needs Reproducer

@melloware
Copy link
Author

Yeah that did not seem to work i wonder if it didn't like the spaces? So I broke it into two separate queries and that works.

steps:
      - name: Cannot Replicate
        uses: actions-cool/issues-helper@v3
        with:
          actions: "close-issues"
          labels: "Resolution: Cannot Replicate"
          inactive-day: 20
      - name: Needs Reproducer
        uses: actions-cool/issues-helper@v3
        with:
          actions: "close-issues"
          labels: "Status: Needs Reproducer"
          inactive-day: 20

@xrkffgg
Copy link
Member

xrkffgg commented Nov 24, 2023

ok, i will check

@xrkffgg xrkffgg self-assigned this Nov 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants