https://github.com/dvsa/cvs-github-actions
The repository that will hold the reusable workflows and actions to be used by the cvs project
https://github.com/dvsa/cvs-github-actions
Last synced: about 1 year ago
JSON representation
The repository that will hold the reusable workflows and actions to be used by the cvs project
- Host: GitHub
- URL: https://github.com/dvsa/cvs-github-actions
- Owner: dvsa
- Created: 2023-08-23T14:17:45.000Z (almost 3 years ago)
- Default Branch: develop
- Last Pushed: 2025-04-01T14:18:12.000Z (about 1 year ago)
- Last Synced: 2025-04-01T14:27:06.805Z (about 1 year ago)
- Language: JavaScript
- Size: 2.59 MB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# cvs-github-actions
The repository that will hold the reusable workflows and actions to be used by the cvs project
## .github/workflows
- node-ci.yaml
- For node backend repositories
- build-mobile.yaml
- For building vta application files
- test-mobile.yaml
- For running the automation suite for vta
## DVSA GitHub Actions
Actions for use by other workflows are stored in their own folder within the root of the repository.
### Usage Examples
**Calculate Environment Values for a given Environment/Branch Name**
```
jobs:
...
steps:
- name: ↕️ Get Environment Details
id: environment
uses: dvsa/cvs-github-actions/environment@develop
with:
environment: ${{ inputs.environment || github.ref_name }}
```
**Seed A Table**
```
jobs:
...
steps:
- name: 🌱 Re-Seed Table
uses: dvsa/cvs-github-actions/table-seed@develop
with:
table: [Full table name]
seed-file: [Location of Seed File]
```