Github workflow not triggered when release is edited #53137
Replies: 3 comments
-
|
hi, is there any update about this? |
Beta Was this translation helpful? Give feedback.
-
|
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.
-
|
Hi, I'm experiencing the same issue — editing a published release via both the GitHub UI and |
Beta Was this translation helpful? Give feedback.
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