Skip to content

Run action on labeled, unlabeled #91

Discussion options

You must be logged in to vote

Moved to Discussion as this is a question about a setup issue rather than a problem with the action itself. (If a problem with the action is discovered as part of this discussion, please create an issue for that.)

This Action can be run on any event as defined by your workflow: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows

The PR event contains labeled and unlabeled activity types, so you could modify your event trigger to add those:

on:
  pull_request:
    types:
      - opened
      - reopened
      - synchronize
      - closed
      - labeled
      - unlabeled

However - if you use this Action with parameter action: auto

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@sophie-warner-annalise-ai
Comment options

Answer selected by sophie-warner-annalise-ai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #90 on September 26, 2024 08:13.