Skip to content

Commit

Permalink
Simplified triggering tests for a release (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnocon authored Jul 21, 2023
1 parent a218515 commit 9fbdf31
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 121 deletions.
67 changes: 0 additions & 67 deletions .github/workflows/browser-tests-v3.yaml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/browser-tests-v4.yaml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/browser-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Browser tests

on:
push:
tags:
- 'v*'

jobs:
trigger-browser-tests:
name: Browser tests
runs-on: ubuntu-latest
steps:
- uses: octokit/[email protected]
name: Trigger browser tests
with:
repository: ibexa/commerce
workflow: "browser-tests.yml"
ref: ${{ github.ref_name }}
route: POST /repos/{repository}/actions/workflows/{workflow}/dispatches
inputs: '{ "send-success-notification": "true", "project-version": "${{ github.ref_name }}" }'
env:
GITHUB_TOKEN: ${{ secrets.TRAVIS_GITHUB_TOKEN }}

0 comments on commit 9fbdf31

Please sign in to comment.