Skip to content

Commit 4f97e73

Browse files
committed
preparing v1.3.0 release
1 parent e60520b commit 4f97e73

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 1.3.0 (Next)
1+
### 1.3.0
22
- Add issue lock/unlock functionality.
33
- Add issue update with comment creation functionality.
44
- Add `creator` parameter to issue search filter.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "concourse-github-issue"
3-
version = "1.2.2"
3+
version = "1.3.0"
44
edition = "2024"
55
authors = ["Matthew Schuchard"]
66
description = "A Concourse resource for Github Issues"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM rust:slim-bookworm AS build
1+
FROM rust:slim-trixie AS build
22
WORKDIR /build
33
COPY . .
44
RUN cargo build --release
55

6-
FROM debian:bookworm-slim
6+
FROM debian:trixie-slim
77
WORKDIR /opt/resource
88
COPY --from=build /build/target/release/concourse-github-issue main
99
RUN ln -s main check && ln -s main in && ln -s main out

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ The following parameters are for filtering from a list of issues to one issue (i
3131

3232
- `assignee`: _optional_ The user name of the assignee for the searched issue.
3333

34+
- `creator`: _optional_ The user name of the creator/author for the searched issue.
35+
3436
- `labels`: _optional_ The list of labels for the searched issue.
3537

3638
### `version`: designates the Github issue state
@@ -79,6 +81,10 @@ The metadata output from this step contains the number, url, title, state, label
7981

8082
- `milestone`: _optional_ The milestone numeric ID to associate with the written Github issue.
8183

84+
- `comment`: _optional_ The body of a comment to add to the issue. This occurs after the locking or unlocking, but before all other issue updates.
85+
86+
- `lock`: _optional_ Whether the issue should be locked or unlocked. This occurs before all other issue updates.
87+
8288
- `state`: _optional_ The desired state of the updated issue. This can be either `open` or `closed`.
8389

8490
### Metadata
@@ -99,9 +105,9 @@ Below is the general structure of the generated Concourse metadata. Note that th
99105
}
100106
```
101107

102-
Octocrab doc links for model serialization:
103-
[Label](https://docs.rs/octocrab/latest/octocrab/models/struct.Label.html)
104-
[Assignee](https://docs.rs/octocrab/latest/octocrab/models/struct.Author.html)
108+
Octocrab doc links for model serialization:
109+
[Label](https://docs.rs/octocrab/latest/octocrab/models/struct.Label.html)
110+
[Assignee](https://docs.rs/octocrab/latest/octocrab/models/struct.Author.html)
105111
[Milestone](https://docs.rs/octocrab/latest/octocrab/models/struct.Milestone.html)
106112

107113
## Example

0 commit comments

Comments
 (0)