8000 feat: Always ensure we create a change set for a run by stack72 · Pull Request #9 · systeminit/actions · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat: Always ensure we create a change set for a run #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 25, 2025
Merged
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
61 changes: 0 additions & 61 deletions .env.example

This file was deleted.

2 changes: 2 additions & 0 deletions .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
paths-ignore:
- dist
36 changes: 15 additions & 21 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,42 @@
name: CodeQL
name: 'CodeQL'

on:
pull_request:
branches:
- main
push:
branches:
- main
branches: ['main']
pull_request:
branches: ['main']
schedule:
- cron: '31 7 * * 3'

permissions:
actions: read
checks: write
contents: read
security-events: write
- cron: '31 7 * * 6'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language:
- TypeScript
language: ['javascript-typescript']

steps:
- name: Checkout
id: checkout
- name: Checkout repository
uses: actions/checkout@v4

- name: Initialize CodeQL
id: initialize
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
source-root: src
config-file: ./.github/codeql/codeql-config.yml

- name: Autobuild
id: autobuild
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/analyze@v3
with:
category: '/language:${{matrix.language}}'
23 changes: 23 additions & 0 deletions .github/workflows/immutable-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Publish Immutable Action Version'

on:
release:
types: [created]

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
packages: write

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Publish
id: publish
uses: actions/publish-immutable-action@v0.0.4
with:
github-token: ${{ secrets.GH_TOKEN }}
1 change: 1 addition & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ jobs:
VALIDATE_TYPESCRIPT_ES: false
VALIDATE_JSON: false
VALIDATE_TYPESCRIPT_STANDARD: false
VALIDATE_CHECKOV: false
13 changes: 13 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
release:
types: [published, edited]
jobs:
tag-major:
name: Push release
runs-on: ubuntu-latest
steps:
- uses: Actions-R-Us/actions-tagger@latest
env:
GITHUB_TOKEN: '${{ github.token }}'
with:
publish_latest_tag: false
6 changes: 4 additions & 2 deletions .github/workflows/update-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@ on:
- main

env:
GITHUB_TOKEN: ${{ secrets.SI_API_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

jobs:
update-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm install
- run: npm run bundle
- run: npm run package
- uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: dist/**
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,7 @@ __tests__/runner/*
# IDE files
.idea
*.code-workspace


# Don't include tests in the generated output
dist/__tests__
24 changes: 0 additions & 24 deletions .markdown-lint.yml

This file was deleted.

7 changes: 0 additions & 7 deletions CODEOWNERS

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ so you can deploy real infrastructure based on your changes.
Place this in a `.github/workflows` workflow on your repository:

```yaml
- uses: systeminit/actions/trigger@main
- uses: systeminit/actions@main
with:
changeSetName: CI
componentId: 01JH3DZW0QTMH69ZA45299GSWY
Expand Down
10 changes: 0 additions & 10 deletions __fixtures__/core.ts

This file was deleted.

22 changes: 0 additions & 22 deletions __tests__/main.test.ts

This file was deleted.

10 changes: 0 additions & 10 deletions __tests__/wait.test.ts
6805

This file was deleted.

Loading
Loading
0