Skip to content

Commit 080121c

Browse files
committed
Sync repo templates ⚙
Sync with coreos/repo-templates@49b82bf.
1 parent 839e013 commit 080121c

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

.github/ISSUE_TEMPLATE/release-checklist.md

Lines changed: 13 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 ssh-key-dir
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
@@ -94,22 +99,14 @@ Push access to the upstream repository is required in order to publish the new t
9499
- [ ] `git branch -d pre-release-${RELEASE_VER} release-${RELEASE_VER}`
95100

96101
- Fedora packaging:
97-
- [ ] update the `rust-ssh-key-dir` spec file in [Fedora](https://src.fedoraproject.org/rpms/rust-ssh-key-dir)
98-
- bump the `Version`
99-
- switch the `Release` back to `1%{?dist}`
100-
- remove any patches obsoleted by the new release
101-
- update changelog
102-
- [ ] run `spectool -g -S rust-ssh-key-dir.spec`
103-
- [ ] run `kinit [email protected]`
104-
- [ ] run `fedpkg new-sources $(spectool -S rust-ssh-key-dir.spec | sed 's:.*/::')`
105-
- [ ] PR the changes in [Fedora](https://src.fedoraproject.org/rpms/rust-ssh-key-dir)
106-
- [ ] once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f41) then push those, for example:
102+
- [ ] Review the proposed changes in the PR submitted by Packit in [Fedora](https://src.fedoraproject.org/rpms/rust-ssh-key-dir)/pull-requests.
103+
- [ ] once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f42) then push those, for example:
107104
```bash
108105
git checkout rawhide
109106
git pull --ff-only
110-
git checkout f41
107+
git checkout f42
111108
git merge --ff-only rawhide
112-
git push origin f41
109+
git push origin f42
113110
```
114111
- [ ] on each of those branches run `fedpkg build`
115112
- [ ] once the builds have finished, submit them to [bodhi](https://bodhi.fedoraproject.org/updates/new), filling in:
@@ -125,6 +122,9 @@ Push access to the upstream repository is required in order to publish the new t
125122
CentOS Stream 9 packaging:
126123
- [ ] Create a `rebase-c9s-ssh-key-dir` issue in the internal team-operations repo and follow the steps there
127124

125+
CentOS Stream 10 packaging:
126+
- [ ] Create a `rebase-c10s-ssh-key-dir` issue in the internal team-operations repo and follow the steps there
127+
128128
[cargo-release]: https://github.com/sunng87/cargo-release
129129
[rustup]: https://rustup.rs/
130130
[crates-io]: https://crates.io/

.github/workflows/rust.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ 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
2930
uses: actions/checkout@v4
@@ -40,6 +41,7 @@ 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
4547
uses: actions/checkout@v4
@@ -56,6 +58,7 @@ 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
6164
uses: actions/checkout@v4
@@ -78,6 +81,7 @@ 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
8387
uses: actions/checkout@v4
@@ -95,6 +99,7 @@ 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:

0 commit comments

Comments
 (0)