Skip to content
Open
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
103 changes: 0 additions & 103 deletions .github/workflows/branch-validations.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish package preview
name: Deploy preview

on:
pull_request:
Expand Down
50 changes: 0 additions & 50 deletions .github/workflows/deploy-published-releases.yaml

This file was deleted.

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

on:
release:
types:
- published

jobs:
deploy:
uses: croct-tech/shared-public-configs/.github/workflows/publish-public-npm-package.yml@master
with:
prepare-script: >-
cp package.json README.md build/ &&
cd build &&
sed -i -e "s~\"version\": \"0.0.0-dev\"~\"version\": \"${GITHUB_REF##*/}\"~" package.json
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
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 Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update release notes
name: Sync release notes

on:
push:
Expand All @@ -8,7 +8,7 @@ on:
- '**'

jobs:
update-notes:
sync:
runs-on: ubuntu-latest
steps:
- name: Update release draft
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/validate-branch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Validate branch

on:
push:
tags-ignore:
- '**'
branches:
- master
pull_request:
types:
- synchronize
- opened

jobs:
validate:
uses: croct-tech/shared-public-configs/.github/workflows/javascript-validations.yml@master
with:
use-private-registry: false
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Label requirements
name: Validate labels
on:
pull_request:
types:
Expand All @@ -9,7 +9,7 @@ on:
- unlabeled

jobs:
check-labels:
validate:
name: Check labels
runs-on: ubuntu-latest
steps:
Expand Down
Loading