Skip to content

Commit 7fb1e2c

Browse files
authored
Merge pull request #54 from UoMResearchIT/release
Release v1.0
2 parents 2dafb77 + 3f10f47 commit 7fb1e2c

File tree

22 files changed

+31
-32
lines changed

22 files changed

+31
-32
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ body:
4545
- "0.1"
4646
- "0.2"
4747
- "v0.3"
48+
- "v1.0"
4849
- "other"
4950
default: 0
5051
- type: input

.github/PULL_REQUEST_TEMPLATE/release.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ Release checklist:
2020
- [ ] Make a `release` branch
2121
- [ ] Make a PR for it <!-- using this template... -->
2222
- [ ] Update version numbers, checking `README.md`s, `action.yml`s, and `bug.yml` in the issue templates
23-
- [ ] Tag the release
24-
- [ ] Rerun known tests after pointing them at the tag
25-
- [ ] Fill in the release description data ("drafting" a release)
26-
- [ ] Double-check you've done nothing silly!
27-
- [ ] Make the GitHub release
23+
- [ ] Draft the release (filling in release description data, prepping the tag to be set on the `release` branch)
24+
- [ ] Rerun known tests after pointing them at the version to be tagged
25+
- [ ] Make the GitHub release draft into a release
2826
- [ ] Merge the PR and delete the branch

apt-get-install/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Installs packages on a Debian or Ubuntu runner. Does not support any other OS, b
55
Example usage:
66

77
```yml
8-
- uses: UoMResearchIT/actions/apt-get-install@v0.3
8+
- uses: UoMResearchIT/actions/apt-get-install@v1.0
99
with:
1010
packages: vera++
1111
```

check-copyrights/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Note that, in general, all public files with a suitable human-readable comment f
99
Example usage:
1010

1111
```yml
12-
- uses: UoMResearchIT/actions/check-copyrights@v0.3
12+
- uses: UoMResearchIT/actions/check-copyrights@v1.0
1313
with:
1414
profile: ASL
1515
```

check-ruleset-containment/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ from a standard model ruleset (the "expected" ruleset).
55

66
Example:
77
```yml
8-
- uses: UoMResearchIT/actions/get-repo-ruleset@v0.3
8+
- uses: UoMResearchIT/actions/get-repo-ruleset@v1.0
99
id: get-rules
10-
- uses: UoMResearchIT/actions/check-ruleset-containment@v0.3
10+
- uses: UoMResearchIT/actions/check-ruleset-containment@v1.0
1111
with:
1212
current: ${{ steps.get-rules.outputs.filename }}
1313
expected: project_setup/my_ruleset_file.json

commit-id/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It's assumed that updated file will not be committed back to the repository; thi
1010
### C and C++
1111

1212
```yml
13-
- uses: UoMResearchIT/actions/commit-id@v0.3
13+
- uses: UoMResearchIT/actions/commit-id@v1.0
1414
with:
1515
file: src/build_id.h
1616
```
@@ -22,7 +22,7 @@ Which might be paired with a source file (in `src/build_id.h` for example) like
2222
```
2323
### Python
2424
```yml
25-
- uses: UoMResearchIT/actions/commit-id@v0.3
25+
- uses: UoMResearchIT/actions/commit-id@v1.0
2626
with:
2727
file: src/version.py
2828
```

compare-output/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The expected and actual outputs are written to the log to aid debugging of failu
1111
Example usage:
1212

1313
```yml
14-
- uses: UoMResearchIT/actions/compare-output@v0.3
14+
- uses: UoMResearchIT/actions/compare-output@v1.0
1515
with:
1616
command: echo foo
1717
expected: foo

configure-nuget-for-github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This configures NuGet so that it can access the organisation namespace for packa
44

55
Example:
66
```yml
7-
- uses: UoMResearchIT/actions/configure-nuget-for-github@main
7+
- uses: UoMResearchIT/actions/configure-nuget-for-github@v1.0
88
```
99
1010
# inputs

docker-publish-to-ghcr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This action does _not_ create the local image.
66
Example usage:
77

88
```yml
9-
- uses: UoMResearchIT/actions/docker-publish-to-ghcr@v0.3
9+
- uses: UoMResearchIT/actions/docker-publish-to-ghcr@v1.0
1010
with:
1111
source-tag: testing
1212
version: latest

download/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Downloads a file from a URL, using a cached version if possible.
44

55
Example:
66
```yml
7-
- uses: UoMResearchIT/actions/download@v0.3
7+
- uses: UoMResearchIT/actions/download@v1.0
88
with:
99
url: https://research-it.manchester.ac.uk/
1010
local-name: homepage.html
1111
```
1212
1313
Example of accessing a protected resource:
1414
```yml
15-
- uses: UoMResearchIT/actions/download@main
15+
- uses: UoMResearchIT/actions/download@v1.0
1616
with:
1717
url: https://api.github.com/repo/UoMResearchIT/actions=test/contents/README.md
1818
local-name: read-me.md

0 commit comments

Comments
 (0)