Skip to content

Bug in uploading videos and creating of events on the Apple iphone #263

Bug in uploading videos and creating of events on the Apple iphone

Bug in uploading videos and creating of events on the Apple iphone #263

Workflow file for this run

name: Label Issues
on:
issues:
types: [opened]
jobs:
label_issues:
runs-on: ubuntu-latest
steps:
- name: Add label
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['s-triage']
})