Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arbrirary change #231

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Merge Schedule
on:
issue_comment:
types: [created, edited]
pull_request:
types:
- opened
Expand All @@ -15,7 +17,8 @@ jobs:
with:
merge_method: squash
# Time zone to use. Default is UTC.
time_zone: 'New_Zealand/Auckland'
# time_zone: 'Pacific/Auckland'
require_statuses_success: 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

18 changes: 18 additions & 0 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,24 @@ If some of the CI checks failed (make sure they are not important ones), you wil

Feel free to raise an issue, make a proposal or [add words to the dictionary](#adding-words-to-dictionary) if you feel you are being unfairly targeted by the CI checks.

## Schedule A Merge Request

Any request can be scheduled to automatically merge at a certain time by adding the following to your merge request message.

```md
/schedule <datetime>
```

Where <datetime> is [any string that can be parsed by `Date()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse)

e.g.

```md
/schedule Wednesday
/schedule 01-05-2024
/schedule 20240501T160000
```

## Update Remote Assets

Certain files need to be fetched from other repos for up to date info. This will be automated, but for not the proccess is manual.
Expand Down
Loading