-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from bilalcaliskan/devel
Devel
- Loading branch information
Showing
27 changed files
with
478 additions
and
252 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,14 +1,19 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "devel" | ||
labels: | ||
- "dependabot" | ||
- "gomod" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "devel" | ||
labels: | ||
- "dependabot" | ||
- "github-actions" |
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
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
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,34 @@ | ||
--- | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: "This bot triages issues and PRs according to the following rules: | ||
- After 60d of inactivity, lifecycle/stale is applied. | ||
- After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied and the issue is closed. | ||
You can: | ||
- Make a comment to remove the stale label and show your support. The 60 days reset. | ||
- If an issue has lifecycle/rotten and is closed, comment and ask maintainers if they'd be interseted in reopening" | ||
stale-pr-message: "This bot triages issues and PRs according to the following rules: | ||
- After 60d of inactivity, lifecycle/stale is applied. | ||
- After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied and the PR is closed. | ||
You can: | ||
- Make a comment to remove the stale label and show your support. The 60 days reset. | ||
- If a PR has lifecycle/rotten and is closed, comment and ask maintainers if they'd be interseted in reopening." | ||
days-before-stale: 60 | ||
days-before-close: 30 | ||
stale-issue-label: 'lifecycle/stale' | ||
stale-pr-label: 'lifecycle/stale' | ||
exempt-issue-label: 'lifecycle/frozen' | ||
exempt-pr-label: 'lifecycle/frozen' | ||
close-issue-label: 'lifecycle/rotten' | ||
close-pr-label: 'lifecycle/rotten' |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.idea/ | ||
bin/ | ||
.bin | ||
vendor/ | ||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.