Skip to content

Commit 93916fb

Browse files
committed
Init
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
0 parents  commit 93916fb

6 files changed

Lines changed: 3956 additions & 0 deletions

File tree

.github/workflows/remark.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Remark Commit
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
7+
jobs:
8+
remark:
9+
name: Build and test
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 1
17+
18+
- name: Timestamp Commit
19+
run: |
20+
cargo install polkadot-remark-commit --locked
21+
22+
SEED="${{ secrets.POLKADOT_SEED }}" \
23+
polkadot-remark-commit \
24+
--org "JamBrains" \
25+
--repo "graymatter" \
26+
--commit "${{ github.sha }}"

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target/
2+
.env

0 commit comments

Comments
 (0)