-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Github actions stale and first-interaction workflow (#1054)
* Add Github actions workflow Signed-off-by: Florian Ruschbaschan <[email protected]> * Change secret name Signed-off-by: Florian Ruschbaschan <[email protected]>
- Loading branch information
1 parent
6df3a04
commit 2191db4
Showing
4 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: First User Interaction | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
greeting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.PAT_SECRET }} | ||
pr-message: |- | ||
Thanks @${{ github.actor }} for taking the time to contribute to hawkBit! We really appreciate this. Make yourself comfortable while I'm looking for a committer to help you with your contribution. | ||
Please make sure you read the [contribution guide](https://github.com/eclipse/hawkbit/blob/master/CONTRIBUTING.md) and signed the Eclipse Contributor Agreement (ECA). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Mark & close stale issues | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.PAT_SECRET }} | ||
days-before-stale: -1 | ||
days-before-close: 15 | ||
stale-issue-label: 'awaiting' | ||
close-issue-message: |- | ||
There has been no response from the original author so I closed this issue. | ||
Please reach out if you have or find the answers we need so that we can investigate further. | ||
only-labels: 'awaiting' | ||
skip-stale-issue-message: 'true' | ||
skip-stale-pr-message: 'true' |