Skip to content

Commit 255f8bc

Browse files
authored
Merge branch 'main' into fix/add-requirements-for-personal-access-token
2 parents 299939c + 1a2f4c5 commit 255f8bc

70 files changed

Lines changed: 5165 additions & 849 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,6 @@ body:
8787
validations:
8888
required: false
8989

90-
# Confirmations
91-
- type: markdown
92-
attributes:
93-
value: "## Confirmations"
94-
9590
# No duplicate issue
9691
- type: checkboxes
9792
id: check-duplicate
@@ -107,7 +102,7 @@ body:
107102
id: conduct
108103
attributes:
109104
label: Code of Conduct
110-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/RubberDuckCrew/gitdone/blob/main/.github/CODE_OF_CONDUCT.md).
105+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://rubberduckcrew.pages.dev/contributing/code-of-conduct).
111106
options:
112107
- label: I agree to follow this project's Code of Conduct
113108
required: true

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,6 @@ body:
5050
validations:
5151
required: false
5252

53-
# Confirmations
54-
- type: markdown
55-
attributes:
56-
value: "## Confirmations"
57-
5853
# No duplicate issue
5954
- type: checkboxes
6055
id: check-duplicate
@@ -70,7 +65,7 @@ body:
7065
id: conduct
7166
attributes:
7267
label: Code of Conduct
73-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/RubberDuckCrew/gitdone/blob/main/.github/CODE_OF_CONDUCT.md).
68+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://rubberduckcrew.pages.dev/contributing/code-of-conduct).
7469
options:
7570
- label: I agree to follow this project's Code of Conduct
7671
required: true
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: 📋 Task
2+
description: Propose a piece of work or activity for the project.
3+
type: task
4+
body:
5+
# Greetings
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this task proposal!
10+
To expedite issue processing, please search open and closed issues before submitting a new one.
11+
12+
# Task
13+
- type: textarea
14+
id: task
15+
attributes:
16+
label: 📋 Task
17+
description: Describe the task, activity, or work to be done.
18+
placeholder: e.g. "Update documentation for new API endpoints."
19+
validations:
20+
required: true
21+
22+
# No duplicate issue
23+
- type: checkboxes
24+
id: check-duplicate
25+
attributes:
26+
label: No duplicate issue
27+
description: By submitting this issue, you confirm that you have checked for open and closed issues addressing the same task beforehand.
28+
options:
29+
- label: I confirm that this issue is not a duplicate
30+
required: true
31+
32+
# Code of Conduct
33+
- type: checkboxes
34+
id: conduct
35+
attributes:
36+
label: Code of Conduct
37+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://rubberduckcrew.pages.dev/contributing/code-of-conduct).
38+
options:
39+
- label: I agree to follow this project's Code of Conduct
40+
required: true

.github/branches.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/labels.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- name: "⚗️ Request Build"
2+
description: "Requests a build of the project"
3+
color: "00ff9d"
4+
- name: "🚀 Request Deploy"
5+
description: "Requests a deployment of the project"
6+
color: "00ff9d"

.github/renovate.json

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"github>RubberDuckCrew/.github//configs/renovate/renovate-rubberduckcrew.json"
4+
"github>RubberDuckCrew/.github//configs/renovate/renovate-rubberduckcrew.json#v2.3.0",
5+
"github>RubberDuckCrew/flutter-workflow//renovate-flutter.json#v1.1.0",
56
],
6-
"reviewers": ["team:gitdone-development"],
7-
"packageRules": [
8-
{
9-
"matchPackageNames": [
10-
"dev.flutter.flutter-plugin-loader",
11-
"dev.flutter.flutter-plugin-loader.gradle.plugin",
12-
"dev.flutter.flutter-plugin-loader:dev.flutter.flutter-plugin-loader.gradle.plugin"
13-
],
14-
"enabled": false
15-
}
7+
"reviewers": [
8+
"team:gitdone-development"
169
]
1710
}

.github/workflows/actionlint.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
name: Actionlint
22

33
on:
4-
pull_request:
5-
paths: [.github/workflows/**]
4+
push:
5+
paths: [.github/workflows/**]
66

77
jobs:
8-
actionlint:
9-
name: Actionlint
10-
runs-on: ubuntu-latest
11-
12-
steps:
13-
- name: Checkout
14-
uses: actions/checkout@v5
15-
16-
- name: Run actionlint
17-
uses: raven-actions/actionlint@v2
8+
run:
9+
uses: RubberDuckCrew/.github/.github/workflows/action-actionlint.yml@9359cf3f39584573a76ae17b2efc76b192c5050e # v2.3.0

.github/workflows/add-project.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Add to project
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
7+
jobs:
8+
run:
9+
uses: RubberDuckCrew/.github/.github/workflows/action-add-project.yml@9359cf3f39584573a76ae17b2efc76b192c5050e # v2.3.0
10+
with:
11+
bot-app-id: ${{ vars.RUBBERDUCKCREW_BOT_APP_ID }}
12+
secrets:
13+
BOT_APP_PRIVATE_KEY: ${{ secrets.RUBBERDUCKCREW_BOT_APP_PRIVATE_KEY }}

.github/workflows/close-actions.yml

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,14 @@ name: Close Actions
22

33
on:
44
issues:
5-
types: [ closed ]
5+
types: [closed]
66
pull_request:
7-
types: [ closed ]
7+
types: [closed]
88

99
jobs:
10-
close-actions:
11-
name: Close actions
12-
runs-on: ubuntu-latest
13-
10+
run:
11+
uses: RubberDuckCrew/.github/.github/workflows/action-close-actions.yml@9359cf3f39584573a76ae17b2efc76b192c5050e # v2.3.0
1412
permissions:
1513
issues: write
1614
pull-requests: write
1715
actions: write
18-
19-
steps:
20-
- name: Remove labels
21-
uses: IamPekka058/removeLabels@v2
22-
with:
23-
github_token: ${{ secrets.GITHUB_TOKEN }}
24-
labels: "🚧 Work in Progress"
25-
26-
- name: Delete branch caches
27-
if: github.event_name == 'pull_request'
28-
uses: Friedinger/DeleteBranchCaches@v2
29-
with:
30-
github-token: ${{ secrets.GITHUB_TOKEN }}
31-
ref: "refs/pull/${{ github.event.pull_request.number }}/merge"

.github/workflows/conventions.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Enforce conventions
2+
3+
on:
4+
pull_request:
5+
types: [opened, labeled, unlabeled, synchronize]
6+
7+
jobs:
8+
run:
9+
uses: RubberDuckCrew/.github/.github/workflows/action-conventions.yml@9359cf3f39584573a76ae17b2efc76b192c5050e # v2.3.0
10+
permissions:
11+
issues: write
12+
pull-requests: write

0 commit comments

Comments
 (0)