Skip to content

Commit

Permalink
Support custom labels and badge styles. Add License. Upgrade and Remo…
Browse files Browse the repository at this point in the history
…ve unused dependencies. (#166)

* Add LICENSE

* bump github workflow versions. readme linting.

* bump package versions

* revert bump package versions

* add message query

* upgrade packages

* update gitignore

* revert upgrades

* revert upgrades

* revert upgrades

* revert upgrades

* remove additional &

* bump packages

* support custom badge style

* revert earthly version

* attempt to fix Earthfile

* attempt to fix Earthfile

* remove unused dependencies

* upgrade login-action

* revert username

* restore missing syntax

* GITHUB_TOKEN

* rename message to label

* remove Cargo.lock from gitignore

* deconflict merge
  • Loading branch information
elliotwutingfeng committed Sep 9, 2022
1 parent 8840c6b commit 0821a56
Show file tree
Hide file tree
Showing 11 changed files with 1,271 additions and 715 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ updates:
ignore:
- dependency-name: serde_json
versions:
- 1.0.61
- 1.0.62
- 1.0.63
- 1.0.83
- 1.0.84
- 1.0.85
- dependency-name: redis
versions:
- 0.19.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install earthly
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.6.2/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.6.23/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"

- name: Login to Packages Container registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: rustup default nightly
- run: cargo build --workspace
- run: cargo test --workspace
15 changes: 12 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
target
.env
Cargo.lock
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

.env
Loading

0 comments on commit 0821a56

Please sign in to comment.