Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: continue even if wiki repo is not existed #3

Merged
merged 1 commit into from
Apr 2, 2024
Merged

Conversation

idubnori
Copy link
Owner

@idubnori idubnori commented Apr 2, 2024

Type

enhancement


Description

  • GitHub Actionsの設定ファイル action.ymlcontinue-on-error オプションを追加しました。これにより、wiki リポジトリが存在しない場合でもワークフローが失敗せずに処理を続行できるようになります。

Changes walkthrough

Relevant files
Enhancement
action.yml
GitHub Actions設定におけるエラー処理の改善                                                         

action.yml

  • continue-on-error オプションを追加し、wiki リポジトリが存在しない場合でも処理を継続できるように変更しました。
  • +1/-0     

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    @github-actions github-actions bot added the enhancement New feature or request label Apr 2, 2024
    Copy link

    github-actions bot commented Apr 2, 2024

    PR Description updated to latest commit (dcecbc6)

    Copy link

    github-actions bot commented Apr 2, 2024

    PR Review

    ⏱️ Estimated effort to review [1-5]

    1, このPRは非常に小さく、特定の設定ファイルに対する単一の変更のみを含んでいます。レビューにかかる時間と労力は最小限です。

    🧪 Relevant tests

    No

    🔍 Possible issues

    No

    🔒 Security concerns

    No

    Code feedback:
    relevant fileaction.yml
    suggestion      

    continue-on-error オプションの追加は、特定のステップが失敗してもワークフローが続行されるようにするための良い方法です。しかし、このオプションを使用する際には、失敗が予想される可能性のある特定の条件下でのみ使用することをお勧めします。全てのエラーを無視することにならないように、このオプションの使用を慎重に検討してください。 [important]

    relevant linecontinue-on-error: true # Continue even if repo is not existed


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review which includes several types of feedbacks, such as possible PR issues, security threats and relevant test in the PR. More feedbacks can be added by configuring the tool.

    The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.

    • When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:
    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    
    [pr_reviewer]
    some_config1=...
    some_config2=...
    

    See the review usage page for a comprehensive guide on using this tool.

    Copy link

    github-actions bot commented Apr 2, 2024

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Enhancement
    特定のエラーに対してのみ続行するように設定を改善する

    continue-on-error:
    trueを使用すると、このステップで発生したエラーがあってもワークフローが続行されます。これは意図した挙動である場合には便利ですが、特定のエラーに対してのみ続行したい場合には適していません。もし特定のエラー(例えば、リポジトリが存在しない場合)にのみ続行したい場合は、if条件を使用して特定のエラーを捉え、その場合のみ続行するように設定することを検討してください。

    action.yml [20]

    -continue-on-error: true # Continue even if repo is not existed
    +if: ${{ failure() && contains(steps.checkout.outputs.error, 'repository not found') }}
    +continue-on-error: true # Continue only if the repo is not existed
     

    ✨ Improve tool usage guide:

    Overview:
    The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.

    • When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:
    /improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
    
    [pr_code_suggestions]
    some_config1=...
    some_config2=...
    

    See the improve usage page for a comprehensive guide on using this tool.

    @idubnori idubnori merged commit 92c584b into main Apr 2, 2024
    1 check passed
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant