Skip to content

Commit 3c7d0db

Browse files
committed
yml fixes
1 parent 76d2a40 commit 3c7d0db

File tree

3 files changed

+86
-2
lines changed

3 files changed

+86
-2
lines changed

.github/workflows/save-ecfr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
- name: Commit text
4242
uses: stefanzweifel/git-auto-commit-action@v5.0.0
4343
with:
44-
commit_message: ecfr update: ${{ steps.date.output.value }}
44+
commit_message: "ecfr update: ${{ steps.date.output.value }}"

.github/workflows/save-iregs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Save ecfr as text
1+
name: Save iregs as text
22

33
on:
44
workflow_dispatch:

.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.o
7+
_site/
8+
_build/
9+
10+
# Packages #
11+
############
12+
# It's better to unpack these files and commit the raw source
13+
# git has its own built-in compression methods.
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.sql
26+
*.sqlite
27+
*.sqlite3
28+
29+
# OS generated files #
30+
######################
31+
.DS_Store
32+
.DS_Store?
33+
._*
34+
.Spotlight-V100
35+
.Trashes
36+
Icon
37+
38+
ehthumbs.db
39+
Thumbs.db
40+
41+
# Environment vars #
42+
####################
43+
.env
44+
45+
# Node packages #
46+
#################
47+
node_modules/
48+
npm-debug.log
49+
yarn-error.log
50+
package-lock.json
51+
52+
# Vim swap files #
53+
##################
54+
*.swp
55+
56+
# Python #
57+
##########
58+
*.pyc
59+
__pycache__/
60+
*.eggs/
61+
*.egg/
62+
63+
# pyenv #
64+
#########
65+
.python-version
66+
67+
# virtual envs #
68+
################
69+
.venv/
70+
venv/
71+
72+
# Front-End #
73+
#############
74+
bower_components/
75+
vendor/
76+
77+
# Floobits #
78+
############
79+
.floo*
80+
# IDE Specifc #
81+
###############
82+
*.idea
83+
.vscode
84+
local-storage.json

0 commit comments

Comments
 (0)