Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .commitlintrc.js

This file was deleted.

13 changes: 1 addition & 12 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1 @@
# These are supported funding model platforms

github: [dargmuesli] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
github: [dargmuesli]
28 changes: 23 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,30 @@ jobs:
build:
needs: ci-optimization
if: needs.ci-optimization.outputs.continue == 'true'
name: dargstack rgen
uses: dargmuesli/github-actions/.github/workflows/dargstack-rgen.yml@661e39fe1c9e484d94c6a5a9d4c9946d57c41771 # 5.1.0
name: Update generated docs
runs-on: ubuntu-latest
permissions:
contents: read
with:
APT_PACKAGES: mkcert
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Regenerate docs
run: |
go install github.com/dargstack/dargstack/v4/cmd/dargstack@latest
export PATH="$(go env GOPATH)/bin:$PATH"
dargstack document
- name: Commit and push updated docs
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add artifacts/docs/
if git diff --staged --quiet; then
echo "Docs are already up to date"
else
git commit -m "chore: update generated docs"
git push
fi
release-semantic:
needs: build
name: Semantic Release
Expand Down
7 changes: 0 additions & 7 deletions .husky/commit-msg

This file was deleted.

7 changes: 0 additions & 7 deletions .husky/pre-commit

This file was deleted.

1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

4 changes: 1 addition & 3 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"tagFormat": "${version}"
]
}
3 changes: 3 additions & 0 deletions Dockerfile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# <DEPENDENCIES>
FROM ghcr.io/dargstack/dargstack:4.0.0-beta.7
# </DEPENDENCIES>
Loading
Loading