Skip to content

Commit

Permalink
Added action to copy english model files
Browse files Browse the repository at this point in the history
  • Loading branch information
BackNot committed Sep 9, 2024
1 parent 7db901a commit 4caadb1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/get-english-model.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

name: Get English model files

on:
workflow_dispatch:
inputs:
source_branch:
description: 'The core repository branch to pull translation YAML files from (e.g. develop)'
required: true
source_folder:
description: 'The folder in the core branch to pull translation YAML files from (e.g. model)'
required: true
new_branch_name:
description: 'The name of the new branch to create in this repository with the pulled files (e.g. trans_2.0.8)'
required: true

jobs:
shared-workflow:
uses: owaspsamm/core/.github/workflows/reusable-create-translation-branch.yml@438ef84c34d08befb5cd413a3344d1e6e1f75e9e
with:
source_branch: ${{inputs.source_branch}}
source_folder: ${{inputs.source_folder}}
new_branch_name: ${{inputs.new_branch_name}}

0 comments on commit 4caadb1

Please sign in to comment.