Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Feb 7, 2024
1 parent 8da40f0 commit a100ebd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ body:
git commit -m "[skip vbump] <Your commit message>"
git push origin release-candidate-vX.Y.Z
```
#### Test the release
- [ ] Execute the manual tests on Shiny apps that are deployed on various hosting providers (Posit connect and shinyapps.io) - track the results in GitHub issue (Applicable only for frameworks that use Shiny).
- [ ] Monitor integration tests, if integration fails, create priority issues on the board.
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/propagate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- main
paths:
- .github/ISSUE_TEMPLATE/release.yml
# TODO also for cran-release.yml?
workflow_dispatch:

jobs:
Expand All @@ -24,6 +25,7 @@ jobs:
target-branch: main
reviewers: |-
walkowif
# TODO add remaining repositories
# - name: <name>
# target-branch: main
# reviewers: |-
Expand Down Expand Up @@ -51,19 +53,20 @@ jobs:
# Update local branch if remote branch already exists.
git fetch origin $PR_BRANCH_NAME@${{ matrix.repos.target-branch }} || true
# Switch to the branch or create if doesn't exist
# Switch to the branch or create if it doesn't exist.
git checkout $PR_BRANCH_NAME@${{ matrix.repos.target-branch }} || git checkout -b $PR_BRANCH_NAME@${{ matrix.repos.target-branch }}
# Pull the branch because stefanzweifel/git-auto-commit-action
# doesn't have support for automatic pulling.
git pull origin $PR_BRANCH_NAME@${{ matrix.repos.target-branch }} || true
# Copy release template from central repo
# Copy release template from central repo.
mkdir -p .github/ISSUE_TEMPLATE
# TODO also cran-release.yml?
cp ../.github/ISSUE_TEMPLATE/release.yml .github/ISSUE_TEMPLATE
- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Propagate release template from ${{ github.repository }}
file_pattern: '.github/ISSUE_TEMPLATE/*'
Expand Down

0 comments on commit a100ebd

Please sign in to comment.