diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-06-09 14:54:24 +0530 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-06-09 09:24:53 +0000 |
commit | 29ae4044a6d4cadcf32f6ce50ce829624cef298b (patch) | |
tree | 770824d97d15fd2ad7c3e62ed0e3a0608a6f8278 /.github | |
parent | 9cfa2ec772b60b6512815422e3e08cd331f2da33 (diff) | |
download | vyos-1x-29ae4044a6d4cadcf32f6ce50ce829624cef298b.tar.gz vyos-1x-29ae4044a6d4cadcf32f6ce50ce829624cef298b.zip |
T6449: added pr update trigger (#3596)
(cherry picked from commit 395bd4eb850ff5763a82f29b1ff398c41e200f09)
# Conflicts:
# .github/workflows/chceck-pr-message.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/chceck-pr-message.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/chceck-pr-message.yml b/.github/workflows/chceck-pr-message.yml new file mode 100644 index 000000000..460662014 --- /dev/null +++ b/.github/workflows/chceck-pr-message.yml @@ -0,0 +1,19 @@ +--- +name: Check pull request message format + +on: + pull_request_target: + branches: + - current + - crux + - equuleus + types: [opened, synchronize, edited] + +permissions: + pull-requests: write + contents: read + +jobs: + check-pr-title: + uses: vyos/.github/.github/workflows/check-pr-message.yml@feature/T6349-reusable-workflows + secrets: inherit |