Skip to content

Commit

Permalink
ci: add merge-by workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Trae Yelovich <[email protected]>
  • Loading branch information
traeok committed Nov 26, 2024
1 parent 803fbd6 commit 464c6e0
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/merge-by-comments.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Merge-by

on:
pull_request:
types: [opened, ready_for_review]
jobs:
rfr_add_date:
name: "Post merge-by date as comment"
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: zowe-actions/shared-actions/merge-by@main
with:
operation: "bump-dates"
25 changes: 25 additions & 0 deletions .github/workflows/merge-by-table.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Merge-by

on:
pull_request:
types: [opened, ready_for_review, converted_to_draft]
pull_request_review:
types: [submitted]
push:
branches:
- main
- next
workflow_dispatch:
schedule:
- cron: "0 11 * * *"
jobs:
rfr_add_date:
name: "Build table and notify users"
runs-on: ubuntu-latest
permissions:
discussions: write
pull-requests: write
steps:
- uses: zowe-actions/shared-actions/merge-by@main
with:
operation: "build-table"

0 comments on commit 464c6e0

Please sign in to comment.