Merge pull request #530 from weyCC81/wey-ExchangeSettings&Test-v2 #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Updates the maester-tests repository with the latest tests | |
# This is still required since we use it for the GitHub action and Azure DevOPs starter guide. | |
name: publish-tests | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: ["main"] | |
paths: | |
- "tests/**" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish to maester-tests | |
id: push_directory | |
uses: cpina/github-action-push-to-another-repository@target-branch | |
env: | |
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
with: | |
source-directory: ./tests | |
target-directory: ./tests | |
destination-github-username: "maester365" | |
destination-repository-name: "maester-tests" | |
user-email: [email protected] | |
commit-message: See ORIGIN_COMMIT from $GITHUB_REF | |
target-branch: main |