Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR preview
name: Deploy preview

on:
pull_request:
Expand All @@ -7,7 +7,7 @@ on:
- opened

jobs:
preview:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
56 changes: 0 additions & 56 deletions .github/workflows/deploy-published-releases.yaml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/deploy-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy release

on:
release:
types:
- published

jobs:
deploy:
uses: croct-tech/shared-public-configs/.github/workflows/publish-public-npm-package.yml@master
with:
pre-build-script: >-
npm run graphql-codegen &&
sed -i -e "s~\"version\": \"0.0.0-dev\"~\"version\": \"${GITHUB_REF##*/}\"~" package.json
prepare-script: >-
cp package.json LICENSE README.md build/
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: Guidelines
name: Notify guidelines

on:
pull_request:
types:
- opened

jobs:
send-guidelines:
notify:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/auto-comment@v1
Expand All @@ -27,4 +28,4 @@ jobs:
> about the change.

☝️ Lastly, the title for the commit will come from the pull request title. So please provide a descriptive title that summarizes the changes in **50 characters or less using the imperative mood.**
Happy coding! 🎉
Happy coding! 🎉
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Validations
name: Validate branch

on:
push:
Expand All @@ -11,8 +11,12 @@ on:
- synchronize
- opened

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
security-checks:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +38,7 @@ jobs:
- name: Check for vulnerabilities
run: npm audit

validate:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Label requirements
name: Validate labels

on:
pull_request:
types:
Expand All @@ -9,8 +10,7 @@ on:
- unlabeled

jobs:
check-labels:
name: Check labels
validate:
runs-on: ubuntu-latest
steps:
- uses: docker://agilepathway/pull-request-label-checker:latest
Expand Down
26 changes: 15 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading