From 351f5d19055116fb60e72ab3cbd314967507601a Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Wed, 26 Jul 2023 15:17:04 +0200 Subject: [PATCH] Add new or update workflow --- .github/workflows/main.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b75c6ea..48f0f44 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,8 +4,8 @@ on: issues: types: - opened - pull_request: - types: + pull_request_target: + types: - opened jobs: @@ -15,14 +15,9 @@ jobs: steps: - name: Check out code uses: actions/checkout@v3 - - name: Get event creation date + - name: Get current date id: date - run: | - if [[ "${{ github.event_name }}" == "issues" ]]; then - echo "date=${{ github.event.issue.created_at }}" >> $GITHUB_ENV - elif [[ "${{ github.event_name }}" == "pull_request" ]]; then - echo "date=${{ github.event.pull_request.created_at }}" >> $GITHUB_ENV - fi + run: echo "date=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV - name: Add to project uses: actions/add-to-project@v0.5.0 with: @@ -35,5 +30,5 @@ jobs: 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 - field-values: ${{ env.date }}, \ No newline at end of file + field-keys: Date,Priority + field-values: ${{ env.date }},Unrealised \ No newline at end of file