Skip to content

Commit cd83af4

Browse files
silence all other workflows
1 parent e29f162 commit cd83af4

File tree

9 files changed

+488
-488
lines changed

9 files changed

+488
-488
lines changed

.github/dependabot.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
1+
# # To get started with Dependabot version updates, you'll need to specify which
2+
# # package ecosystems to update and where the package manifests are located.
3+
# # Please see the documentation for all configuration options:
4+
# # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
55

6-
# NPM production dependencies are part of the generated Lambda JavaScript.
7-
# Therefore updates on production are prefixed with fix(component) to trigger releases.
8-
# Development updates are prefixed with chore, and not triggering a release.
6+
# # NPM production dependencies are part of the generated Lambda JavaScript.
7+
# # Therefore updates on production are prefixed with fix(component) to trigger releases.
8+
# # Development updates are prefixed with chore, and not triggering a release.
99

10-
version: 2
11-
updates:
12-
- package-ecosystem: "github-actions"
13-
# Workflow files stored in the
14-
# default location of `.github/workflows`
15-
directory: "/"
16-
schedule:
17-
interval: "weekly"
10+
# version: 2
11+
# updates:
12+
# - package-ecosystem: "github-actions"
13+
# # Workflow files stored in the
14+
# # default location of `.github/workflows`
15+
# directory: "/"
16+
# schedule:
17+
# interval: "weekly"
1818

19-
- package-ecosystem: "npm"
20-
directory: "/lambdas"
21-
schedule:
22-
interval: "weekly"
23-
groups:
24-
aws:
25-
patterns:
26-
- "@aws-sdk/*"
27-
octokit:
28-
patterns:
29-
- "@octokit/*"
30-
aws-powertools:
31-
patterns:
32-
- "@aws-lambda-powertools/*"
19+
# - package-ecosystem: "npm"
20+
# directory: "/lambdas"
21+
# schedule:
22+
# interval: "weekly"
23+
# groups:
24+
# aws:
25+
# patterns:
26+
# - "@aws-sdk/*"
27+
# octokit:
28+
# patterns:
29+
# - "@octokit/*"
30+
# aws-powertools:
31+
# patterns:
32+
# - "@aws-lambda-powertools/*"
3333

34-
ignore:
35-
- dependency-name: "@middy/core"
36-
update-types: ["version-update:semver-major"]
37-
- dependency-name: "@octokit/*"
38-
update-types: ["version-update:semver-major"]
39-
- dependency-name: "eslint"
40-
update-types: ["version-update:semver-major"]
41-
commit-message:
42-
prefix: "fix(lambda)"
43-
prefix-development: "chore(lambda)"
34+
# ignore:
35+
# - dependency-name: "@middy/core"
36+
# update-types: ["version-update:semver-major"]
37+
# - dependency-name: "@octokit/*"
38+
# update-types: ["version-update:semver-major"]
39+
# - dependency-name: "eslint"
40+
# update-types: ["version-update:semver-major"]
41+
# commit-message:
42+
# prefix: "fix(lambda)"
43+
# prefix-development: "chore(lambda)"

.github/workflows/codeql.yml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
name: "CodeQL Advanced"
1+
# name: "CodeQL Advanced"
22

3-
on:
4-
push:
5-
branches: [ "main", "develop", "v1" ]
6-
pull_request:
7-
branches: [ "main", "develop", "v1" ]
8-
paths-ignore:
9-
- '**/*.md'
10-
schedule:
11-
- cron: '25 19 * * 2'
3+
# on:
4+
# push:
5+
# branches: [ "main", "develop", "v1" ]
6+
# pull_request:
7+
# branches: [ "main", "develop", "v1" ]
8+
# paths-ignore:
9+
# - '**/*.md'
10+
# schedule:
11+
# - cron: '25 19 * * 2'
1212

13-
jobs:
14-
analyze:
15-
name: Analyze (${{ matrix.language }})
16-
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
17-
permissions:
18-
# required for all workflows
19-
security-events: write
13+
# jobs:
14+
# analyze:
15+
# name: Analyze (${{ matrix.language }})
16+
# runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
17+
# permissions:
18+
# # required for all workflows
19+
# security-events: write
2020

21-
strategy:
22-
fail-fast: false
23-
matrix:
24-
include:
25-
- language: javascript-typescript
26-
build-mode: none
27-
steps:
28-
- name: Checkout repository
29-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
# strategy:
22+
# fail-fast: false
23+
# matrix:
24+
# include:
25+
# - language: javascript-typescript
26+
# build-mode: none
27+
# steps:
28+
# - name: Checkout repository
29+
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3030

31-
# Initializes the CodeQL tools for scanning.
32-
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
34-
with:
35-
languages: ${{ matrix.language }}
36-
build-mode: ${{ matrix.build-mode }}
31+
# # Initializes the CodeQL tools for scanning.
32+
# - name: Initialize CodeQL
33+
# uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
34+
# with:
35+
# languages: ${{ matrix.language }}
36+
# build-mode: ${{ matrix.build-mode }}
3737

38-
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
40-
with:
41-
category: "/language:${{matrix.language}}"
38+
# - name: Perform CodeQL Analysis
39+
# uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
40+
# with:
41+
# category: "/language:${{matrix.language}}"

.github/workflows/lambda.yml

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
name: Build lambdas
2-
on:
3-
pull_request:
4-
branches:
5-
- main
6-
paths:
7-
- 'lambdas/**'
1+
# name: Build lambdas
2+
# on:
3+
# pull_request:
4+
# branches:
5+
# - main
6+
# paths:
7+
# - 'lambdas/**'
88

9-
jobs:
10-
build:
11-
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
node: [20]
15-
container:
16-
image: node:${{ matrix.node }}
17-
defaults:
18-
run:
19-
working-directory: ./lambdas
9+
# jobs:
10+
# build:
11+
# runs-on: ubuntu-latest
12+
# strategy:
13+
# matrix:
14+
# node: [20]
15+
# container:
16+
# image: node:${{ matrix.node }}
17+
# defaults:
18+
# run:
19+
# working-directory: ./lambdas
2020

21-
steps:
22-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23-
- name: Install dependencies
24-
run: yarn install --frozen-lockfile
25-
- name: Run prettier
26-
run: yarn format-check
27-
- name: Run linter
28-
run: yarn lint
29-
- name: Run tests
30-
id: test
31-
run: yarn test
32-
- name: Build distribution
33-
run: yarn build
34-
- name: Upload coverage report
35-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
36-
if: ${{ failure() }}
37-
with:
38-
name: coverage-reports
39-
path: ./**/coverage
40-
retention-days: 5
21+
# steps:
22+
# - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
# - name: Install dependencies
24+
# run: yarn install --frozen-lockfile
25+
# - name: Run prettier
26+
# run: yarn format-check
27+
# - name: Run linter
28+
# run: yarn lint
29+
# - name: Run tests
30+
# id: test
31+
# run: yarn test
32+
# - name: Build distribution
33+
# run: yarn build
34+
# - name: Upload coverage report
35+
# uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
36+
# if: ${{ failure() }}
37+
# with:
38+
# name: coverage-reports
39+
# path: ./**/coverage
40+
# retention-days: 5

.github/workflows/packer-build.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
name: "Packer checks"
2-
on:
3-
push:
4-
branches:
5-
- main
6-
pull_request:
7-
paths:
8-
- "images/**"
9-
- ".github/workflows/packer-build.yml"
10-
- "module/runners/templates/**"
11-
env:
12-
AWS_REGION: eu-west-1
13-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14-
jobs:
15-
verify_packer:
16-
name: Verify packer
17-
runs-on: ubuntu-latest
18-
container:
19-
image: index.docker.io/hashicorp/packer@sha256:12c441b8a3994e7df9f0e2692d9298f14c387e70bcc06139420977dbf80a137b # 1.11.2
20-
strategy:
21-
matrix:
22-
image: ["linux-al2023", "windows-core-2019", "windows-core-2022", "ubuntu-focal", "ubuntu-jammy", "ubuntu-jammy-arm64"]
23-
defaults:
24-
run:
25-
working-directory: images/${{ matrix.image }}
26-
steps:
27-
- name: "Checkout"
28-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29-
- name: packer init
30-
run: packer init .
31-
- name: check packer formatting
32-
run: packer fmt -recursive -check=true .
33-
- name: packer validate
34-
run: packer validate -evaluate-datasources .
1+
# name: "Packer checks"
2+
# on:
3+
# push:
4+
# branches:
5+
# - main
6+
# pull_request:
7+
# paths:
8+
# - "images/**"
9+
# - ".github/workflows/packer-build.yml"
10+
# - "module/runners/templates/**"
11+
# env:
12+
# AWS_REGION: eu-west-1
13+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
# jobs:
15+
# verify_packer:
16+
# name: Verify packer
17+
# runs-on: ubuntu-latest
18+
# container:
19+
# image: index.docker.io/hashicorp/packer@sha256:12c441b8a3994e7df9f0e2692d9298f14c387e70bcc06139420977dbf80a137b # 1.11.2
20+
# strategy:
21+
# matrix:
22+
# image: ["linux-al2023", "windows-core-2019", "windows-core-2022", "ubuntu-focal", "ubuntu-jammy", "ubuntu-jammy-arm64"]
23+
# defaults:
24+
# run:
25+
# working-directory: images/${{ matrix.image }}
26+
# steps:
27+
# - name: "Checkout"
28+
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
# - name: packer init
30+
# run: packer init .
31+
# - name: check packer formatting
32+
# run: packer fmt -recursive -check=true .
33+
# - name: packer validate
34+
# run: packer validate -evaluate-datasources .

0 commit comments

Comments
 (0)