Github workflow not triggered when release is edited #53137
Unanswered
grzegorzkrukowski
asked this question in
Actions
Replies: 2 comments
-
|
hi, is there any update about this? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I am also experiencing an issue with the "edited" trigger in Pull Requests. The user is meant to edit the PR body to add a link to the Work Item number in Azure DevOps. When they save that edit, I expect the workflow to be triggered. Instead, the user must trigger the flow manually. name: 'Description contains AB# with a valid work item id'
on: # rebuild any PRs for main branch changes
workflow_call:
pull_request:
types: [opened, reopened, edited]
branches:
- master
- main
- 'release/**'
- 'hotfix/**'
jobs:
create-edit-comment:
name: AzDOWorkItemRequired
runs-on: ubuntu-latest
steps:
- uses: my-org-name/.github/actions/azure-boards-pr-check@master |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Body
It seems that the workflow is never triggered when editing the release:
I tried editing pre-release and latest release (non-drafts) and it's never triggering this workflow.
It only works for
publishedevent type.Beta Was this translation helpful? Give feedback.
All reactions