Skip to content

Commit 69b3c60

Browse files
committed
Sync repo templates ⚙
Sync with coreos/repo-templates@f12bf00.
1 parent 4e1ff5a commit 69b3c60

File tree

3 files changed

+35
-19
lines changed

3 files changed

+35
-19
lines changed

.github/ISSUE_TEMPLATE/release-checklist.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
---
2-
# Template generated by https://github.com/coreos/repo-templates; do not edit downstream
2+
name: release checklist
3+
about: release checklist template
4+
title: New release for openssh-keys
5+
labels: jira,kind/release
6+
warning: |
7+
⚠️ Template generated by https://github.com/coreos/repo-templates; do not edit downstream
38
---
49

510
# Release process
@@ -79,22 +84,14 @@ Push access to the upstream repository is required in order to publish the new t
7984
- [ ] `git branch -d pre-release-${RELEASE_VER} release-${RELEASE_VER}`
8085

8186
- Fedora packaging:
82-
- [ ] update the `rust-openssh-keys` spec file in [Fedora](https://src.fedoraproject.org/rpms/rust-openssh-keys)
83-
- bump the `Version`
84-
- switch the `Release` back to `1%{?dist}`
85-
- remove any patches obsoleted by the new release
86-
- update changelog
87-
- [ ] run `spectool -g -S rust-openssh-keys.spec`
88-
- [ ] run `kinit [email protected]`
89-
- [ ] run `fedpkg new-sources $(spectool -S rust-openssh-keys.spec | sed 's:.*/::')`
90-
- [ ] PR the changes in [Fedora](https://src.fedoraproject.org/rpms/rust-openssh-keys)
91-
- [ ] once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f40) then push those, for example:
87+
- [ ] Review the proposed changes in the PR submitted by Packit in [Fedora](https://src.fedoraproject.org/rpms/rust-openssh-keys/pull-requests).
88+
- [ ] once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f42) then push those, for example:
9289
```bash
9390
git checkout rawhide
9491
git pull --ff-only
95-
git checkout f40
92+
git checkout f42
9693
git merge --ff-only rawhide
97-
git push origin f40
94+
git push origin f42
9895
```
9996
- [ ] on each of those branches run `fedpkg build`
10097
- [ ] once the builds have finished, submit them to [bodhi](https://bodhi.fedoraproject.org/updates/new), filling in:

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
version: 2
55
updates:
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
labels: ["skip-notes"]
11+
open-pull-requests-limit: 3
612
- package-ecosystem: cargo
713
directory: /
814
schedule:
@@ -11,3 +17,11 @@ updates:
1117
labels:
1218
- dependency
1319
- skip-notes
20+
21+
# Group all updates together in a single PR. We can remove some
22+
# updates from a combined update PR via comments to dependabot:
23+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/managing-pull-requests-for-dependency-updates#managing-dependabot-pull-requests-for-grouped-updates-with-comment-commands
24+
groups:
25+
build:
26+
patterns:
27+
- "*"

.github/workflows/rust.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,16 @@ concurrency:
1818
env:
1919
CARGO_TERM_COLOR: always
2020
# Pinned toolchain for linting
21-
ACTIONS_LINTS_TOOLCHAIN: 1.75.0
21+
ACTIONS_LINTS_TOOLCHAIN: 1.84.1
2222

2323
jobs:
2424
tests-stable:
2525
name: Tests, stable toolchain
2626
runs-on: ubuntu-latest
27+
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
2728
steps:
2829
- name: Check out repository
29-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3031
- name: Install toolchain
3132
uses: dtolnay/rust-toolchain@v1
3233
with:
@@ -40,9 +41,10 @@ jobs:
4041
tests-release-stable:
4142
name: Tests (release), stable toolchain
4243
runs-on: ubuntu-latest
44+
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
4345
steps:
4446
- name: Check out repository
45-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4648
- name: Install toolchain
4749
uses: dtolnay/rust-toolchain@v1
4850
with:
@@ -56,9 +58,10 @@ jobs:
5658
tests-release-msrv:
5759
name: Tests (release), minimum supported toolchain
5860
runs-on: ubuntu-latest
61+
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
5962
steps:
6063
- name: Check out repository
61-
uses: actions/checkout@v3
64+
uses: actions/checkout@v4
6265
- name: Detect crate MSRV
6366
run: |
6467
msrv=$(cargo metadata --format-version 1 --no-deps | \
@@ -78,9 +81,10 @@ jobs:
7881
linting:
7982
name: Lints, pinned toolchain
8083
runs-on: ubuntu-latest
84+
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
8185
steps:
8286
- name: Check out repository
83-
uses: actions/checkout@v3
87+
uses: actions/checkout@v4
8488
- name: Install toolchain
8589
uses: dtolnay/rust-toolchain@v1
8690
with:
@@ -95,13 +99,14 @@ jobs:
9599
tests-other-channels:
96100
name: Tests, unstable toolchain
97101
runs-on: ubuntu-latest
102+
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
98103
continue-on-error: true
99104
strategy:
100105
matrix:
101106
channel: [beta, nightly]
102107
steps:
103108
- name: Check out repository
104-
uses: actions/checkout@v3
109+
uses: actions/checkout@v4
105110
- name: Install toolchain
106111
uses: dtolnay/rust-toolchain@v1
107112
with:

0 commit comments

Comments
 (0)