-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* copy from freckle-app * raise lts20 persistent * remove top level license and readme * little changelog link adjustment * update source repo location * correction to cabal description * typo in readme
- Loading branch information
1 parent
f6a7dcc
commit 2d22fee
Showing
30 changed files
with
1,965 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
use flake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @freckle/backenders |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Asana | ||
|
||
on: | ||
pull_request: | ||
types: [opened] | ||
|
||
jobs: | ||
link-asana-task: | ||
if: ${{ github.actor != 'dependabot[bot]' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Asana/[email protected] | ||
id: postAttachment | ||
with: | ||
asana-secret: ${{ secrets.ASANA_API_ACCESS_KEY }} | ||
- run: echo "Status is ${{ steps.postAttachment.outputs.status }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
generate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: generate | ||
uses: freckle/stack-action/generate-matrix@v5 | ||
outputs: | ||
stack-yamls: ${{ steps.generate.outputs.stack-yamls }} | ||
fail-fast: false | ||
|
||
test: | ||
needs: generate | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
stack-yaml: ${{ fromJSON(needs.generate.outputs.stack-yamls) }} | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: freckle/stack-action@v5 | ||
env: | ||
STACK_YAML: ${{ matrix.stack-yaml }} | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: haskell-actions/hlint-setup@v2 | ||
- uses: haskell-actions/hlint-run@v2 | ||
with: | ||
fail-on: warning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Mergeabot | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
pull_request: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
mergeabot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: freckle/mergeabot-action@v2 | ||
with: | ||
quarantine-days: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- id: tag | ||
uses: freckle/haskell-tag-action@v1 | ||
with: | ||
package-yaml: persistent-sql-lifted/package.yaml | ||
tag-prefix: persistent-sql-lifted-v | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- if: steps.tag.outputs.tag | ||
run: stack upload --pvp-bounds lower persistent-sql-lifted | ||
env: | ||
HACKAGE_KEY: ${{ secrets.HACKAGE_UPLOAD_API_KEY }} | ||
STACK_YAML: stack-lts20.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.stack-work | ||
*.hie | ||
.hiedb | ||
stack-*.lock | ||
stack.*.lock | ||
.direnv |
Oops, something went wrong.