应用程序 “Easydict.app”的这个版 本不能与此版本的macos配合使 用。 您使用的是 macos 12.7.6。该应用程序要 求macOs 13.0 或更高版本。 #3732
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
name: Greetings | |
on: [pull_request_target, issues] | |
jobs: | |
greeting: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- uses: actions/first-interaction@v1 | |
# fix run error: https://github.com/actions/first-interaction/issues/101#issuecomment-1262487501 | |
continue-on-error: true | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: "Hello ${{ github.actor }}, Thank you for your first issue contribution 🎉 " | |
pr-message: "Hello ${{ github.actor }}, Thank you for your first PR contribution 🎉 ${{ github.actor }}" |