Skip to content

Commit f0f830e

Browse files
committed
ci: linux: move docs to readme
1 parent a3c71d2 commit f0f830e

File tree

2 files changed

+39
-34
lines changed

2 files changed

+39
-34
lines changed

.github/workflows/README

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
hledger github actions workflows.
2+
3+
4+
docs:
5+
6+
based on https://gist.github.com/mstksg/11f753d891cee5980326a8ea8c865233
7+
http://www.btellez.com/posts/triggering-github-actions-with-webhooks.html
8+
https://help.github.com/en/actions
9+
https://help.github.com/en/actions/reference/events-that-trigger-workflows
10+
https://help.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule
11+
https://help.github.com/en/actions/configuring-and-managing-workflows/caching-and-storing-workflow-data
12+
https://help.github.com/en/actions/configuring-and-managing-workflows/caching-dependencies-to-speed-up-workflows
13+
https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources
14+
https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
15+
https://github.community/t5/GitHub-Actions/bd-p/actions
16+
17+
https://github.com/actions/cache
18+
https://github.com/marketplace/actions/cache
19+
20+
https://github.com/actions/upload-artifact
21+
https://github.com/c-hive/gha-remove-artifacts
22+
23+
https://github.com/actions/setup-haskell
24+
25+
https://github.com/marketplace/actions/checkout
26+
https://github.com/sdras/awesome-actions
27+
28+
https://sevenzip.osdn.jp/chm/cmdline/commands/index.htm
29+
30+
https://github.com/mxschmitt/action-tmate
31+
- name: Setup tmate session
32+
uses: mxschmitt/action-tmate@v1
33+
34+
https://kodimensional.dev/github-actions
35+
"Dead simple cross-platform GitHub Actions for Haskell"
36+

.github/workflows/linux.yml

+3-34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Runs on notable pushes to ci-linux, on notable pull requests against
2-
# master, and weekly on master.
1+
# Runs on notable pull requests against master,
2+
# and also on notable pushes to ci-linux (no longer used),
3+
# and weekly on master.
34

45
# Builds all modules optimised and runs
56
# unit/doc/functional/haddock/benchmark tests on linux,
@@ -343,35 +344,3 @@ jobs:
343344
# env:
344345
# MATRIX_CONTEXT: ${{ toJson(matrix) }}
345346
# run: echo "$MATRIX_CONTEXT"
346-
347-
348-
349-
# docs:
350-
351-
# based on https://gist.github.com/mstksg/11f753d891cee5980326a8ea8c865233
352-
# http://www.btellez.com/posts/triggering-github-actions-with-webhooks.html
353-
# https://help.github.com/en/actions
354-
# https://help.github.com/en/actions/reference/events-that-trigger-workflows
355-
# https://help.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule
356-
# https://help.github.com/en/actions/configuring-and-managing-workflows/caching-and-storing-workflow-data
357-
# https://help.github.com/en/actions/configuring-and-managing-workflows/caching-dependencies-to-speed-up-workflows
358-
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources
359-
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
360-
# https://github.community/t5/GitHub-Actions/bd-p/actions
361-
362-
# https://github.com/actions/cache
363-
# https://github.com/marketplace/actions/cache
364-
365-
# https://github.com/actions/upload-artifact
366-
# https://github.com/c-hive/gha-remove-artifacts
367-
368-
# https://github.com/actions/setup-haskell
369-
370-
# https://github.com/marketplace/actions/checkout
371-
# https://github.com/sdras/awesome-actions
372-
373-
# https://sevenzip.osdn.jp/chm/cmdline/commands/index.htm
374-
375-
# https://github.com/mxschmitt/action-tmate
376-
# - name: Setup tmate session
377-
# uses: mxschmitt/action-tmate@v1

0 commit comments

Comments
 (0)