Can't buy vehicles #4
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: Add issue or pull request to project board | |
on: | |
issues: | |
types: | |
- opened | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
add-to-project: | |
name: Add issue or pull request to project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Get current date | |
id: date | |
run: echo "date=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV | |
- name: Add to project | |
uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/esx-framework/projects/9 | |
github-token: ${{ secrets.MY_GITHUB_TOKEN }} | |
id: add-project | |
- name: Update project fields | |
uses: titoportas/[email protected] | |
with: | |
project-url: https://github.com/orgs/esx-framework/projects/9 | |
github-token: ${{ secrets.MY_GITHUB_TOKEN }} | |
item-id: ${{ steps.add-project.outputs.itemId }} | |
field-keys: Date,Priority | |
field-values: ${{ env.date }},Unrealised |