是否可以将加载 microsoft/table-transformer-structure-recognition模型的代码,改为可以指定从本地目录加载 #53
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: create_jira_issue | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
create: | |
runs-on: ubuntu-latest | |
name: Create JIRA Issue | |
steps: | |
- name: Login to Jira | |
uses: atlassian/gajira-login@v3 | |
env: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
- name: Create Jira issue | |
uses: atlassian/gajira-create@v3 | |
with: | |
project: CORE | |
issuetype: Task | |
summary: ${{ github.event.issue.title }} | |
description: | | |
Created from github issue: ${{ github.event.issue.html_url }} | |
---- | |
${{ github.event.issue.body }} | |
fields: '{ "labels": ["github-issue"] }' | |
- name: Log created issue | |
run: echo "Issue ${{ steps.create.outputs.issue }} was created" |