Switch to using PSResourceGet for module installation + add PSGallery as repository if not present. #1841
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
# | |
# Stale item management | |
# | |
# NOTES: | |
# This workflow greets a person for their a first issue or PR. | |
name: First interaction | |
on: [pull_request_target, issues] | |
permissions: {} | |
jobs: | |
greeting: | |
name: Greeting | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/first-interaction@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: 'Thanks for raising your first issue, the team appreciates the time you have taken 😉' | |
pr-message: 'Thank you for your contribution, one of the team will evaluate shortly.' |