Add support for serializing DateTime in self-describing data (close #… #54
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: Admin | |
on: | |
create: | |
pull_request: | |
types: | |
- opened | |
branches: | |
- 'release/**' | |
push: | |
branches: | |
- "release/**" | |
jobs: | |
update-labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Update issue status labels | |
uses: snowplow-incubator/labels-helper-action@v1 | |
env: | |
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
link-pr-issue: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Match the issue to the PR | |
uses: snowplow-incubator/pull-request-helper-action@v1 | |
env: | |
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |