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
4 changes: 2 additions & 2 deletions .github/workflows/_code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@main
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
- if: "!contains(github.event.pull_request.title, 'update dependency eslint-config-txo')"
run: yarn lint:ci
- name: Validate ESLint run if PR title contains `update dependency eslint-config-txo`
if: contains(github.event.pull_request.title, 'update dependency eslint-config-txo')
run: yarn txo-eslint ver --cache
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
4 changes: 2 additions & 2 deletions .github/workflows/_code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@main
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
- run: yarn lint:ci
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
2 changes: 1 addition & 1 deletion .github/workflows/_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
4 changes: 2 additions & 2 deletions .github/workflows/_prisma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@main
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
id: install
- run: yarn schema:process
- name: Check not processed schema
Expand All @@ -18,7 +18,7 @@ jobs:
exit $(git status --porcelain=v1 2>/dev/null|wc -l)
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
8 changes: 4 additions & 4 deletions .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
environment: default-branch-semantic-release
steps:
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@main
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
id: get-token
with:
app-id: ${{ secrets.TXO_GITHUB_BOT_APP_ID }}
Expand All @@ -33,7 +33,7 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@main
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
id: install
with:
use-cache: false
Expand Down Expand Up @@ -61,15 +61,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ steps.get-token.outputs.token }}
SLACK_WEBHOOK: ${{ secrets.SEMANTIC_RELEASE_SLACK_WEBHOOK }}
- uses: technology-studio/github-workflows/.github/actions/save-dependencies@main
- uses: technology-studio/github-workflows/.github/actions/save-dependencies@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
cache_mode: ${{ inputs.cache_mode }}
download-cache-dir: ${{ steps.install.outputs.download-cache-dir }}
download-cache-primary-key: ${{ steps.install.outputs.download-cache-primary-key }}
node-modules-primary-key: ${{ steps.install.outputs.node-modules-primary-key }}
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
2 changes: 1 addition & 1 deletion .github/workflows/_resolve-yarn-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: "/"
runs-on: ubuntu-latest
steps:
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@main
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
id: get-token
with:
app-id: ${{ secrets.TXO_GITHUB_BOT_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_semantic-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
2 changes: 1 addition & 1 deletion .github/workflows/_sync-code-in-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
environment: default-branch-readme-sync
steps:
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@main
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
id: get-token
with:
app-id: ${{ secrets.TXO_GITHUB_BOT_APP_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@main
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
- run: yarn type-check
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
4 changes: 2 additions & 2 deletions .github/workflows/_unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@main
- uses: technology-studio/github-workflows/.github/actions/install-dependencies@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
- run: yarn test --coverage
- id: check-dir
run: |
Expand All @@ -22,7 +22,7 @@ jobs:
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5
- name: Send a Slack message on failure
if: failure()
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@main
uses: technology-studio/github-workflows/.github/actions/slack-failed-job-message@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
with:
slack_bot_token: ${{ secrets.TXO_SLACK_BOT_APP_TOKEN }}
channel_id: ${{ secrets.TXO_SLACK_GITHUB_OPS_CHANNEL_ID }}
2 changes: 1 addition & 1 deletion .github/workflows/_yarn-deduplicate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: "/"
runs-on: ubuntu-latest
steps:
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@main
- uses: technology-studio/github-workflows/.github/actions/github-app-token-generator@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
id: get-token
with:
app-id: ${{ secrets.TXO_GITHUB_BOT_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ permissions:
jobs:
semantic-title:
name: 'Semantic title'
uses: technology-studio/github-workflows/.github/workflows/_semantic-title.yml@main
uses: technology-studio/github-workflows/.github/workflows/_semantic-title.yml@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/resolve-yarn-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
resolve-yarn-lock-on-comment:
name: '/'
if: contains(github.event.comment.body, '/resolve yarn.lock')
uses: technology-studio/github-workflows/.github/workflows/_resolve-yarn-lock.yml@main
uses: technology-studio/github-workflows/.github/workflows/_resolve-yarn-lock.yml@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
secrets: inherit
with:
pr_number: ${{ github.event.issue.number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yarn-deduplicate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ jobs:
yarn-deduplicate-on-comment:
name: '/'
if: contains(github.event.comment.body, '/deduplicate yarn.lock')
uses: technology-studio/github-workflows/.github/workflows/_yarn-deduplicate.yml@main
uses: technology-studio/github-workflows/.github/workflows/_yarn-deduplicate.yml@696ee6d68a8fdb357c5a6e26e748fba32f09a9bb # main
secrets: inherit