Skip to content

maint: upgrade from go1.x to provided.al2 #23

maint: upgrade from go1.x to provided.al2

maint: upgrade from go1.x to provided.al2 #23

Workflow file for this run

name: Sync Github Pull Request to Asana
on:
pull_request_target:
types: [opened, reopened]
jobs:
create-asana-attachment-job:
runs-on: ubuntu-latest
name: Create pull request attachments on Asana tasks
steps:
- name: Create pull request attachments
uses: honeycombio/gha-create-pr-attachment@main
id: postAttachment
with:
asana-secret: ${{ secrets.ASANA_SECRET }}
- name: Create task if not found
if: ${{ !contains(steps.postAttachment.outputs.status, '201') }}
uses: honeycombio/gha-create-asana-task@v1.0.0
with:
asana-secret: ${{ secrets.ASANA_PAT }}
asana-workspace-id: ${{ secrets.ASANA_WORKSPACE_ID }}
asana-project-id: ${{ secrets.ASANA_PROJECT_ID }}
asana-section-id: ${{ secrets.ASANA_SECTION_ID }}
asana-task-name: '${{ github.event.repository.name}}: ${{ github.event.pull_request.title }}'
asana-task-description: |
${{ github.event.pull_request.body }}
source: https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/pull/${{ github.event.pull_request.number }}