Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit b211d14

Browse files
authored
Merge pull request #7 from thepurplebubble/implement-fsync
Implement fsync
2 parents 21c097f + 362ea68 commit b211d14

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: https://hcb.hackclub.com/donations/start/purplebubble

.github/workflows/fsync.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: fsync
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
schedule:
8+
- cron: '*/30 * * * *' # Runs every 30 minutes
9+
10+
jobs:
11+
file_sync:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v2
16+
with:
17+
token: ${{ secrets.PBB_TOKEN }}
18+
- name: gh_fsync
19+
uses: gleich/gh_fsync@master

fsync.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
commit_message: 🔄 Update file via sync
2+
3+
# Syncs repos from thepurplebubble/template
4+
files:
5+
# root
6+
- path: CONTRIBUTING.md
7+
source: https://github.com/thepurplebubble/template/blob/main/CONTRIBUTING.md
8+
- path: CODE_OF_CONDUCT.md
9+
source: https://github.com/thepurplebubble/template/blob/main/CODE_OF_CONDUCT.md
10+
- path: LICENSE.md
11+
source: https://github.com/thepurplebubble/template/blob/main/LICENSE.md
12+
# .github
13+
- path: /.github/SECURITY.md
14+
source: https://github.com/thepurplebubble/template/blob/main/.github/SECURITY.md
15+
- path: /.github/PULL_REQUEST_TEMPLATE.md
16+
source: https://github.com/thepurplebubble/template/blob/main/.github/PULL_REQUEST_TEMPLATE.md
17+
- path: /.github/FUNDING.yml
18+
source: https://github.com/thepurplebubble/template/blob/main/.github/FUNDING.yml
19+
- path: /.github/CONTRIBUTORS.md
20+
source: https://github.com/thepurplebubble/template/blob/main/.github/CONTRIBUTORS.md
21+
- path: /.github/CODEOWNERS
22+
source: https://github.com/thepurplebubble/template/blob/main/.github/CODEOWNERS
23+
- path: /.github/AUTHORS.md
24+
source: https://github.com/thepurplebubble/template/blob/main/.github/AUTHORS.md
25+
- path: /.github/ACKNOWLEDGEMENTS.md
26+
source: https://github.com/thepurplebubble/template/blob/main/.github/ACKNOWLEDGEMENTS.md
27+
# issue templates
28+
- path: /.github/ISSUE_TEMPLATE/bugreport.yml
29+
source: https://github.com/thepurplebubble/template/blob/main/.github/ISSUE_TEMPLATE/bugreport.yml
30+
- path: /.github/ISSUE_TEMPLATE/chore.yml
31+
source: https://github.com/thepurplebubble/template/blob/main/.github/ISSUE_TEMPLATE/chore.yml
32+
- path: /.github/ISSUE_TEMPLATE/config.yml
33+
source: https://github.com/thepurplebubble/template/blob/main/.github/ISSUE_TEMPLATE/config.yml
34+
- path: /.github/ISSUE_TEMPLATE/documentation.yml
35+
source: https://github.com/thepurplebubble/template/blob/main/.github/ISSUE_TEMPLATE/documentation.yml
36+
- path: /.github/ISSUE_TEMPLATE/feature_request.yml
37+
source: https://github.com/thepurplebubble/template/blob/main/.github/ISSUE_TEMPLATE/feature_request.yml
38+
- path: /.github/ISSUE_TEMPLATE/other.yml
39+
source: https://github.com/thepurplebubble/template/blob/main/.github/ISSUE_TEMPLATE/other.yml

0 commit comments

Comments
 (0)