Skip to content

Commit

Permalink
initial source commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gfx committed Dec 22, 2023
1 parent d377e33 commit 97582a0
Show file tree
Hide file tree
Showing 10 changed files with 2,431 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dpz-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "DPZ Bot"

on:
# run it on every 7 minutes
schedule:
- cron: "*/7 * * * *"
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Run run
run: cargo run
env:
RSS_URL: ${{ secrets.RSS_URL }}
BSKY_ID: ${{ secrets.BSKY_ID }}
BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"cSpell.words": [
"atproto",
"Bluesky",
"BSKY",
"chrono",
"LOCALNAME",
"repost",
"reposts",
"reqwest"
],
"rust-analyzer.linkedProjects": [
"./Cargo.toml"
]
}
Loading

0 comments on commit 97582a0

Please sign in to comment.