forked from ros/rosdistro
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/ros/rosdistro
- Loading branch information
Showing
17 changed files
with
703 additions
and
254 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,8 +1,9 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
# only notify on security updates and not version updates. | ||
open-pull-requests-limit: 0 | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
# only notify on security updates and not version updates. | ||
open-pull-requests-limit: 0 |
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,38 +1,39 @@ | ||
--- | ||
# Add 'noetic' label if any files in noetic/ folder are changed by a PR | ||
noetic: | ||
- noetic/* | ||
- noetic/* | ||
|
||
# Add 'humble' label if any files in humble/ folder are changed by a PR | ||
humble: | ||
- humble/* | ||
- humble/* | ||
|
||
# Add 'iron' label if any files in iron/ folder are changed by a PR | ||
iron: | ||
- iron/* | ||
- iron/* | ||
|
||
# Add 'rolling' label if any files in rolling/ folder are changed by a PR | ||
rolling: | ||
- rolling/* | ||
- rolling/* | ||
|
||
# Add 'rosdep' label if any files in rosdep/ folder are changed by a PR | ||
rosdep: | ||
- rosdep/* | ||
- rosdep/* | ||
|
||
# Add 'end-of-life' label if any files are in folders for versions that are no longer supported | ||
end-of-life: | ||
# ROS 1 | ||
- groovy/* | ||
- hydro/* | ||
- indigo/* | ||
- jade/* | ||
- kinetic/* | ||
- lunar/* | ||
- melodic/* | ||
# ROS 2 | ||
- ardent/* | ||
- bouncy/* | ||
- crystal/* | ||
- dashing/* | ||
- eloquent/* | ||
- foxy/* | ||
- galactic/* | ||
# ROS 1 | ||
- groovy/* | ||
- hydro/* | ||
- indigo/* | ||
- jade/* | ||
- kinetic/* | ||
- lunar/* | ||
- melodic/* | ||
# ROS 2 | ||
- ardent/* | ||
- bouncy/* | ||
- crystal/* | ||
- dashing/* | ||
- eloquent/* | ||
- foxy/* | ||
- galactic/* |
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,23 +1,27 @@ | ||
--- | ||
pull_request_rules: | ||
- name: Comment on PRs with an end-of-life label | ||
conditions: | ||
- label=end-of-life | ||
actions: | ||
comment: | ||
message: This pull request changes files for a ROS distribution that is no longer supported (End Of Life) and the distribution will not have any future syncs to include this change. | ||
- name: Close on changes only to EOL folders | ||
conditions: | ||
- and: | ||
- label=end-of-life | ||
# Active ROS 1 distros | ||
- label!=melodic | ||
- label!=noetic | ||
# Active ROS 2 distros | ||
- label!=foxy | ||
- label!=galactic | ||
- label!=humble | ||
- label!=rolling | ||
# Other labels | ||
- label!=rosdep | ||
actions: | ||
close: | ||
- name: Comment on PRs with an end-of-life label | ||
conditions: | ||
- label=end-of-life | ||
actions: | ||
comment: | ||
message: > | ||
This pull request changes files for a ROS distribution | ||
that is no longer supported (End Of Life) | ||
and the distribution will not have any future syncs to include this change. | ||
- name: Close on changes only to EOL folders | ||
conditions: | ||
- and: | ||
- label=end-of-life | ||
# Active ROS 1 distros | ||
- label!=melodic | ||
- label!=noetic | ||
# Active ROS 2 distros | ||
- label!=foxy | ||
- label!=galactic | ||
- label!=humble | ||
- label!=rolling | ||
# Other labels | ||
- label!=rosdep | ||
actions: | ||
close: |
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
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,19 +1,29 @@ | ||
--- | ||
name: 'Label inactive PRs as stale' | ||
|
||
on: | ||
# this is fine since gha runs with yaml 1.2 | ||
on: # yamllint disable-line rule:truthy | ||
schedule: | ||
- cron: '0 11 * * *' # runs at 11am UTC every day => early morning in US | ||
- cron: '0 11 * * *' # runs at 11am UTC every day => early morning in US | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 # https://github.com/marketplace/actions/close-stale-issues | ||
with: | ||
stale-pr-label: 'stale' | ||
stale-pr-message: "This PR hasn't been activity in 14 days. If you are still are interested in getting it merged please provide an update. Otherwise it will likely be closed by a rosdistro maintainer following our [contributing policy](https://github.com/ros/rosdistro/blob/master/CONTRIBUTING.md). It's been labeled \"stale\" for visibility to the maintainers. If this label isn't appropriate, you can ask a maintainer to remove the label and add the 'persistent' label." | ||
days-before-pr-stale: 14 | ||
days-before-pr-close: -1 # don't close PRs automatically | ||
days-before-issue-stale: -1 # don't label issues as stale | ||
days-before-issue-close: -1 # don't close issues automatically | ||
exempt-pr-labels: 'persistent' | ||
- uses: actions/stale@v8 # https://github.com/marketplace/actions/close-stale-issues | ||
with: | ||
stale-pr-label: 'stale' | ||
stale-pr-message: > | ||
This PR hasn't been activity in 14 days. | ||
If you are still are interested in getting it merged | ||
please provide an update. | ||
Otherwise it will likely be closed by a rosdistro maintainer | ||
following our [contributing policy](https://github.com/ros/rosdistro/blob/master/CONTRIBUTING.md). | ||
It's been labeled "stale" for visibility to the maintainers. | ||
If this label isn't appropriate, | ||
you can ask a maintainer to remove the label and add the 'persistent' label. | ||
days-before-pr-stale: 14 | ||
days-before-pr-close: -1 # don't close PRs automatically | ||
days-before-issue-stale: -1 # don't label issues as stale | ||
days-before-issue-close: -1 # don't close issues automatically | ||
exempt-pr-labels: 'persistent' |
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,3 +1,4 @@ | ||
*~ | ||
.DS_STORE | ||
*.pyc | ||
.venv/* |
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
Oops, something went wrong.