Skip to content

Commit 9b02a15

Browse files
authored
Merge branch 'main' into 705
2 parents 736a711 + 68d513e commit 9b02a15

14 files changed

Lines changed: 880 additions & 327 deletions

.env.template

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FORKED_ASSIGNEE=YOUR_HANDLE
2+
FORKED_DEFAULT_BRANCH=main
3+
FORKED_LABEL="from upstream"
4+
FORKED_REPOSITORY=YOUR_REPOSITORY/awesome-actions
5+
UPSTREAM_REPOSITORY=sdras/awesome-actions

.github/FUNDING.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/linters/.textlintrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"plugins": { },
3+
"filters": { },
4+
"rules": {
5+
"terminology": {
6+
"skip": [ "Link" ],
7+
"exclude": [
8+
"readme(s)?"
9+
],
10+
"terms": [
11+
[ "README(s)?", "README$1" ]
12+
]
13+
}
14+
}
15+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"plugins": { },
3+
"filters": { },
4+
"rules": {
5+
"link-title-case": {
6+
"specialTerms": {
7+
"2fa": "2FA",
8+
".net": ".NET",
9+
"apk": "APK",
10+
"buildpulse": "BuildPulse",
11+
"cdk": "CDK",
12+
"cgo": "CGO",
13+
"chatops": "ChatOps",
14+
"cicullis": "CICULLIS",
15+
"cobol": "COBOL",
16+
"codedeploy": "CodeDeploy",
17+
"digitalocean": "DigitalOcean",
18+
"diktat": "diKTat",
19+
"ec2": "EC2",
20+
"ecr": "ECR",
21+
"eks": "EKS",
22+
"fpc": "FPC",
23+
"gcp": "GCP",
24+
"ghes": "GHES",
25+
"gitguardian": "GitGuardian",
26+
"gke": "GKE",
27+
"goimports": "GoImports",
28+
"goreleaser": "GoReleaser",
29+
"gpg": "GPG",
30+
"iam": "IAM",
31+
"jacoco": "JaCoCo",
32+
"jetbrains": "JetBrains",
33+
"jsonbin": "JSONBin",
34+
"k3d": "k3d",
35+
"k3s": "k3s",
36+
"latex": "LaTeX",
37+
"lfs": "LFS",
38+
"lgtm": "LGTM",
39+
"lxd": "LXD",
40+
"messagebird": "MessageBird",
41+
"mdbook": "mdBook",
42+
"nsfw": "NSFW",
43+
"nativescript": "NativeScript",
44+
"nuget": "NuGet",
45+
"openstack": "OpenStack",
46+
"phpstan": "PHPStan",
47+
"php_codesniffer": "PHP_CodeSniffer",
48+
"prs": "PRs",
49+
"psscriptanalyzer": "PSScriptAnalyzer",
50+
"powershell": "PowerShell",
51+
"pypi": "PyPI",
52+
"qemu": "QEMU",
53+
"readme": "README",
54+
"readme.md": "README.md",
55+
"redoc": "ReDoc",
56+
"rest": "REST",
57+
"secrethub": "SecretHub",
58+
"semver": "SemVer",
59+
"semvers": "SemVers",
60+
"sendgrid": "SendGrid",
61+
"sms": "SMS",
62+
"sonarcloud": "SonarCloud",
63+
"sqlcheck": "SQLCheck",
64+
"testcafe": "TestCafe",
65+
"tencentcloud": "TencentCloud",
66+
"upx": "UPX",
67+
"virustotal": "VirusTotal",
68+
"vms": "VMs",
69+
"vsx": "VSX",
70+
"webpagetest": "WebPageTest",
71+
"xunit": "xUnit",
72+
"zerotier": "ZeroTier",
73+
}
74+
}
75+
}
76+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"plugins": { },
3+
"filters": { },
4+
"rules": {
5+
"title-case": true
6+
}
7+
}

.github/workflows/lint.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/linter.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
name: Lint
3+
4+
on:
5+
push:
6+
branches: [main]
7+
pull_request:
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
12+
packages: read
13+
# To report GitHub Actions status checks
14+
statuses: write
15+
16+
jobs:
17+
dedicated-linter:
18+
name: Dedicated Linters
19+
runs-on: ubuntu-latest
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
linter:
24+
- awesome-lint
25+
- textlint-titlecase
26+
- textlint-linktitlecase
27+
28+
steps:
29+
- uses: actions/checkout@v4
30+
with:
31+
# so awesome-lint can check the repo age
32+
fetch-depth: 0
33+
34+
- uses: taiki-e/install-action@just
35+
36+
- run: just configure
37+
shell: bash
38+
39+
- run: just ${{ matrix.linter }}
40+
shell: bash
41+
42+
general-linter:
43+
name: General Linters
44+
runs-on: ubuntu-latest
45+
46+
steps:
47+
- name: Checkout code
48+
uses: actions/checkout@v4
49+
with:
50+
# super-linter needs the full git history to get the
51+
# list of files that changed across commits
52+
fetch-depth: 0
53+
54+
- name: Lint Awesome Actions
55+
uses: super-linter/super-linter@v7
56+
env:
57+
# To report GitHub Actions status checks
58+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59+
VALIDATE_ALL_CODEBASE: false
60+
VALIDATE_MARKDOWN_PRETTIER: false
61+
VALIDATE_JSON_PRETTIER: false
62+
VALIDATE_GIT_COMMITLINT: false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.env

0 commit comments

Comments
 (0)