Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support custom labels and badge styles. Add License. Upgrade and Remove unused dependencies. #166

Merged
merged 29 commits into from
Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7f654b8
Add LICENSE
elliotwutingfeng Apr 3, 2022
b06d238
Merge branch 'XAMPPRocky:master' into master
elliotwutingfeng May 23, 2022
745c2ee
bump github workflow versions. readme linting.
elliotwutingfeng Jun 21, 2022
5e8c080
bump package versions
elliotwutingfeng Jun 21, 2022
5f02251
revert bump package versions
elliotwutingfeng Jun 21, 2022
ba8206a
add message query
elliotwutingfeng Jun 21, 2022
30a77a6
upgrade packages
elliotwutingfeng Aug 12, 2022
56ac3b9
update gitignore
elliotwutingfeng Sep 7, 2022
a40f591
revert upgrades
elliotwutingfeng Sep 7, 2022
38df3fd
revert upgrades
elliotwutingfeng Sep 7, 2022
967e0d2
revert upgrades
elliotwutingfeng Sep 7, 2022
41c70f6
revert upgrades
elliotwutingfeng Sep 7, 2022
73df47a
remove additional &
elliotwutingfeng Sep 7, 2022
965074d
bump packages
elliotwutingfeng Sep 7, 2022
d3ee5a5
support custom badge style
elliotwutingfeng Sep 8, 2022
8785d03
revert earthly version
elliotwutingfeng Sep 8, 2022
ea319b7
attempt to fix Earthfile
elliotwutingfeng Sep 8, 2022
2ded9de
attempt to fix Earthfile
elliotwutingfeng Sep 8, 2022
4a4c4c6
remove unused dependencies
elliotwutingfeng Sep 8, 2022
41eeb05
upgrade login-action
elliotwutingfeng Sep 8, 2022
2bb21af
revert username
elliotwutingfeng Sep 8, 2022
c44e245
restore missing syntax
elliotwutingfeng Sep 8, 2022
6000ab3
restore missing syntax
elliotwutingfeng Sep 8, 2022
e80c196
GITHUB_TOKEN
elliotwutingfeng Sep 8, 2022
abcddae
rename message to label
elliotwutingfeng Sep 8, 2022
94d4e58
Merge branch 'master' into dev
elliotwutingfeng Sep 8, 2022
1356639
remove Cargo.lock from gitignore
elliotwutingfeng Sep 8, 2022
bcdecd6
Merge branch 'master' into dev
elliotwutingfeng Sep 8, 2022
0dda795
deconflict merge
elliotwutingfeng Sep 8, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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