Introduce vertical split mode for executors #114
Workflow file for this run
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] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
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: "Hi!π\nThank you for raising the issue.\nI hope, the plugin makes your workflow easier!\nWe will take a look to your issue as soon as possible.π" | |
pr-message: "Hi!π\nThank you for the Pull Request π.\nPlease read [CONTRIBUTING.md](https://github.com/ilyachur/cmake4vim/blob/master/CONTRIBUTING.md) to make a good PR." |