Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

send-eng-issues-to-backlog.yml 1003 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  1. name: Send Issue to EPD backlog
  2. on:
  3. issues:
  4. types:
  5. - labeled
  6. - reopened
  7. jobs:
  8. triage:
  9. if: github.repository == 'github/docs-internal'
  10. runs-on: ubuntu-latest
  11. continue-on-error: true
  12. steps:
  13. - name: Add issues with engineering label to project board
  14. if: contains(github.event.issue.labels.*.name, 'engineering') || contains(github.event.issue.labels.*.name, 'design') || contains(github.event.issue.labels.*.name, 'Design')
  15. uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
  16. with:
  17. github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
  18. script: |
  19. var column_id = 9659080;
  20. try {
  21. github.projects.createCard({
  22. column_id: column_id,
  23. content_id: context.payload.issue.id,
  24. content_type: "Issue"
  25. });
  26. } catch (error) {
  27. console.log(error);
  28. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...