Skip to content

Commit 3e87ce1

Browse files
committed
New GitHub workflow
1 parent 7f95038 commit 3e87ce1

7 files changed

+98
-22
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
| Q | A
2-
| ------------- | ---
3-
| Branch? | <!-- see below -->
4-
| Bug fix? | yes/no
5-
| New feature? | yes/no <!-- please update src/**/CHANGELOG.md files -->
6-
| Deprecations? | yes/no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
7-
| Tickets | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead -->
8-
| License | MIT
1+
Target branch:
2+
Resolves issue # <!-- #-prefixed issue number(s), if any -->
3+
4+
<!-- replace space with "x" in square brackets: [x] -->
5+
- [ ] It is a Bug fix
6+
- [ ] It is a New feature
7+
- [ ] It is related to dependencies
8+
9+
Includes:
10+
- [ ] Breaks BC
11+
- [ ] Deprecations
12+
913
<!--
10-
Replace this notice by a short README for your feature/bugfix. This will help people
11-
understand your PR and can be used as a start for the documentation.
14+
Fill in this template according to the PR you're about to submit.
15+
Replace this comment by a description of what your PR is solving.
1216
13-
Additionally:
14-
- Always add tests and ensure they pass.
15-
- Never break backward compatibility (unless you are working on the next major release branch).
16-
- Bug fixes must be submitted against the lowest maintained branch where they apply
17-
(lowest branches are regularly merged to upper ones so they get the fixes too.)
18-
- Features and deprecations must be submitted against the last major branch (e.g. 1.x).
17+
Please consider the following requirement:
18+
* Modification of existing tests should be avoided unless deemed necessary.
19+
* You MUST never open a PR related to a security issue. Contact Spomky in private at https://gitter.im/Spomky/
1920
-->
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 'Dependency Review'
2+
on: [pull_request]
3+
4+
permissions:
5+
contents: read
6+
7+
jobs:
8+
dependency-review:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: 'Checkout Repository'
12+
uses: actions/checkout@v4
13+
- name: 'Dependency Review'
14+
uses: actions/dependency-review-action@v4

.github/workflows/infection.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
2-
31
name: "Integrate"
42

53
on:

.github/workflows/integrate.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
2-
31
name: "Integrate"
42

53
on:
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 'Lock Issues'
2+
3+
on:
4+
schedule:
5+
- cron: '28 4 * * *'
6+
7+
jobs:
8+
lock:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: dessant/lock-threads@v5
12+
with:
13+
github-token: ${{ github.token }}
14+
issue-inactive-days: '31'
15+
exclude-issue-created-before: ''
16+
exclude-any-issue-labels: ''
17+
add-issue-labels: ''
18+
issue-comment: >
19+
This thread has been automatically locked since there has not been
20+
any recent activity after it was closed. Please open a new issue for
21+
related bugs.
22+
issue-lock-reason: 'resolved'
23+
process-only: 'issues'

.github/workflows/release-on-milestone-closed.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2-
31
name: "Automatic Releases"
42

53
on:

.github/workflows/scorecards.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Scorecards supply-chain security
2+
3+
on:
4+
schedule:
5+
- cron: '34 4 * * 6'
6+
push:
7+
branches: [ "*.*.x" ]
8+
9+
permissions: read-all
10+
11+
jobs:
12+
analysis:
13+
name: Scorecards analysis
14+
runs-on: ubuntu-latest
15+
permissions:
16+
security-events: write
17+
id-token: write
18+
contents: read
19+
actions: read
20+
21+
steps:
22+
- name: "Checkout code"
23+
uses: actions/checkout@v4
24+
with:
25+
persist-credentials: false
26+
27+
- name: "Run analysis"
28+
uses: ossf/[email protected]
29+
with:
30+
results_file: results.sarif
31+
results_format: sarif
32+
publish_results: true
33+
34+
- name: "Upload artifact"
35+
uses: actions/[email protected]
36+
with:
37+
name: SARIF file
38+
path: results.sarif
39+
retention-days: 5
40+
41+
- name: "Upload to code-scanning"
42+
uses: github/codeql-action/upload-sarif@v3
43+
with:
44+
sarif_file: results.sarif

0 commit comments

Comments
 (0)