Skip to content

Commit 8673dba

Browse files
committed
👷 sync with template
1 parent 6074822 commit 8673dba

File tree

4 files changed

+36
-41
lines changed

4 files changed

+36
-41
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,48 @@
11
# 📦 Pull Request Template
22

3-
<!-- If this is your first PR, welcome! Please make sure you read the [contributing guidelines](../CONTRIBUTING.md). -->
3+
## Description
44

5-
6-
## ✨ Description
7-
8-
Please include a concise summary of the changes and their context.
9-
If this is a feature, explain the motivation.
10-
If it's a bug fix, describe what was broken and how it's fixed.
5+
Please include a summary of the changes and the related context. If this is a feature, explain the motivation. If it's a bug fix, describe what was broken.
116

127
Fixes: #<issue-number> _(if applicable)_
138

14-
---
15-
16-
## 🏷️ Type of Change
9+
## Type of Change
1710

18-
<!-- Add X in the box below -->
11+
Please check the relevant option(s):
1912

2013
- [ ] 🐛 Bug fix
2114
- [ ] ✨ New feature
2215
- [ ] 🧹 Code cleanup or refactor
2316
- [ ] 📝 Documentation update
24-
- [ ] 🔧 Build or CI change
17+
- [ ] 🔧 Build or CI-related change
2518
- [ ] 🔒 Security fix
26-
- [ ] 📦 Dependency update
27-
- [ ] 💥 API change
28-
- [ ] 🧊 Deprecation
29-
- [ ] 🕳️ Regression fix
30-
- [ ] Other: <!-- specify -->
19+
- [ ] Other (specify):
3120

32-
---
21+
## How Has This Been Tested?
3322

34-
## 🧪 How Has This Been Tested?
23+
Please describe the test strategy:
3524

3625
- [ ] Manual testing
3726
- [ ] Unit tests
3827
- [ ] Integration tests
3928
- [ ] Not tested yet
4029

41-
<details>
42-
<summary>Commands used (if applicable)</summary>
30+
Commands used (if applicable):
4331

4432
```bash
4533
# Example
4634
my-cli-tool build --verbose
4735
my-cli-tool test
4836
````
4937

50-
</details>
51-
52-
---
53-
54-
## ✅ Checklist
38+
## Checklist
5539

5640
* [ ] I have followed the [Contributing Guidelines](CONTRIBUTING.md)
5741
* [ ] I have added tests or explained why they are not needed
5842
* [ ] I have updated relevant documentation (README, examples, etc.)
59-
* [ ] I have followed the [Conventional Commits](https://www.conventionalcommits.org/) specification
43+
* [ ] My changes follow the [Conventional Commits](https://www.conventionalcommits.org/) specification
6044
* [ ] My commits include appropriate [Gitmoji](https://gitmoji.dev/)
61-
* [ ] My commits are squashed
62-
63-
---
64-
65-
## 📎 Additional Context
66-
67-
Add screenshots, diagrams, or any other information useful for the reviewer.
68-
69-
---
70-
71-
## 🙏 Reviewer Notes
7245

73-
<!-- Optional guidance for the reviewer, e.g., focus area, known tradeoffs -->
46+
## Additional Context
7447

75-
*Please confirm that if this PR changes any image versions or dependencies, then that's the sole change this PR makes.*
48+
Add any additional context or screenshots if necessary.

.github/workflows/cred-scan.yaml renamed to .github/workflows/cred-scan.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
pull_request:
55
branches: [ main ]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
cred-scan:
912
runs-on: ubuntu-latest

.github/workflows/github-sanity-scan.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ on:
44
pull_request:
55
branches: [ main ]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
github-sanity-scan:
9-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-latest
1013
steps:
1114
- uses: actions/checkout@v4
1215
- name: Github sanity scanner

.github/workflows/sync-labels.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Sync labels
2+
on:
3+
workflow_dispatch:
4+
5+
permissions:
6+
issues: write # needed to edit labels
7+
8+
jobs:
9+
sync:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: EndBug/label-sync@v2
13+
with:
14+
config-file: 'https://raw.githubusercontent.com/outscale/.github/main/labels.yml'
15+
# delete-other-labels: false # set to true for strict sync
16+
# dry-run: false # set to true to preview changes

0 commit comments

Comments
 (0)