Skip to content

Commit

Permalink
Day1 2023 finished
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoltePudeleczko committed Dec 1, 2023
1 parent 7fe5caa commit 928fbb0
Show file tree
Hide file tree
Showing 11 changed files with 1,115 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/2023_badges.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update 2023 AoC Badges
on:
workflow_dispatch:
push:
paths:
- 2023/**

jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: joblo2213/aoc-badges-action@v3
with:
userid: 208492
session: ${{ secrets.AOC_SESSION }}
year: 2023
leaderboard: 'https://adventofcode.com/2023/leaderboard/private/view/208492.json'
file: '2023/README.md'
starsRegex: '(?<=https:\/\/img\.shields\.io\/badge\/stars%20⭐-)[0-9]+(?=-yellow)'
daysCompletedRegex: '(?<=https:\/\/img\.shields\.io\/badge\/days%20completed-)[0-9]+(?=-red)'
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update badges
file_pattern: README.md
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ vignettes/*.pdf

.vscode/

Cargo.lock

*.exe

obj/
6 changes: 6 additions & 0 deletions 2023/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "aoc"
version = "0.1.0"
authors = ["Szymon Zborowski"]
edition = "2021"
default-run = "aoc"
8 changes: 8 additions & 0 deletions 2023/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Advent of Code 2023

🎄 All my solutions written in Rust 🎄

Marks my first experiences ever with Rust. I'm not sure if I like it yet, but I'm definitely intrigued.

![Stars](https://img.shields.io/badge/stars%20⭐-0-yellow)
![Days](https://img.shields.io/badge/days%20completed-0-red)
Loading

0 comments on commit 928fbb0

Please sign in to comment.