gr2m / merge-schedule-action

GitHub Action to merge pull requests on a scheduled day

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feature request: set status to "success" before merging

hmble opened this issue ยท comments

here is my workflow file for reference

name: Merge Schedule
env:
  TZ: Asia/Kolkata
on:
  pull_request:
    types:
      - opened
      - edited
      - synchronize
  schedule:
    # https://crontab.guru/every-hour
    - cron: "*/5 * * * *"

jobs:
  merge_schedule:
    runs-on: ubuntu-latest
    steps:
      - uses: gr2m/merge-schedule-action@v1.1.2
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Maybe we need to update github check run to completed after merging PR after this line I don't know much about github action so this is a possible guess. I hope its right.

2020-08-16-223040_905x230_scrot

yes that sounds like a good idea, I'd be happy to accept a pull request with the change if you or anyone else would like to work on it.

I can try to make PR, but can you tell me how to test ?

๐ŸŽ‰ This issue has been resolved in version 1.2.0 ๐ŸŽ‰

The release is available on GitHub release

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€