Skip to content

كتاجر يمكنك انشاء حساب في النظام من خلال ايقونات التواصل الاجتماعي #29

كتاجر يمكنك انشاء حساب في النظام من خلال ايقونات التواصل الاجتماعي

كتاجر يمكنك انشاء حساب في النظام من خلال ايقونات التواصل الاجتماعي #29

Workflow file for this run

# This workflow will triage issues and apply a label based on the
# types: reopened or opened.
name: Label Issues
on:
issues:
types:
- reopened
- opened
- edited
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Label Issues
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const label = "Triage";
const issueNumber = context.issue.number;
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
labels: [label],
});