Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Sep 11, 2024
1 parent a91085e commit 4a0134a
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 51 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Daily Auto Merge

on:
schedule:
- cron: '0 0 * * *' # Runs every day at midnight UTC

jobs:
auto-merge:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Download latest auto-merge binary
run: |
wget https://github.com/hack-ink/auto-merge/releases/latest/download/auto-merge-x86_64-unknown-linux-gnu.tar.gz
tar -xvf auto-merge-x86_64-unknown-linux-gnu.tar.gz
chmod +x auto-merge
- name: Merge pull requests for repositories
run: |
REPOS=("repo1" "repo2" "repo3") # Add your repository names here
for REPO in "${REPOS[@]}"; do
./auto-merge "$REPO"
done
79 changes: 30 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "auto-merge"
readme = "README.md"
repository = "https://github.com/hack-ink/auto-merge"
version = "0.1.0"
version = "0.1.1"

[profile.ci-dev]
incremental = false
Expand All @@ -27,6 +27,6 @@ vergen-gitcl = { version = "1.0", features = ["cargo"] }
anyhow = { version = "1.0" }
clap = { version = "4.5", features = ["derive"] }
color-eyre = { version = "0.6" }
reqwew = { version = "0.2" }
reqwew = { version = "0.3" }
serde_json = { version = "1.0" }
tokio = { version = "1.4", features = ["macros", "rt-multi-thread"] }

0 comments on commit 4a0134a

Please sign in to comment.