-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into async-2.0
- Loading branch information
Showing
110 changed files
with
3,444 additions
and
1,309 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
title: "[QA (Japanese)]" | ||
labels: ["Q&A (Japanese)"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
日本語で気軽に質問するためのカテゴリです。もし他の人が困っているのを見つけたらぜひ回答してあげてください。 | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: やりたいこと | ||
description: | | ||
何について困っているのかを書いてください。試したことや実際の結果を示してください。 | ||
期待する挙動と実際の結果の違いがあればそれも書くのをおすすめします。 | ||
render: markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: configuration | ||
attributes: | ||
label: 設定した内容 | ||
description: | | ||
どのような設定をして期待する挙動を実現しようとしたのかを書いてください。(例: fluentd.confの内容を貼り付ける) | ||
render: apache | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: ログの内容 | ||
description: | | ||
Fluentdのログを提示してください。エラーログがあると回答の助けになります。(例: fluentd.logの内容を貼り付ける) | ||
render: shell | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: 環境について | ||
description: | | ||
- Fluentd or td-agent version: `fluentd --version` or `td-agent --version` | ||
- Operating system: `cat /etc/os-release` | ||
- Kernel version: `uname -r` | ||
どんな環境で困っているかの情報がないと、再現できないため誰も回答できないことがあります。 | ||
必要な情報を記入することをおすすめします。 | ||
value: | | ||
- Fluentd version: | ||
- TD Agent version: | ||
- Fluent Package version: | ||
- Docker image (tag): | ||
- Operating system: | ||
- Kernel version: | ||
render: markdown |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
title: "[Q&A]" | ||
labels: ["Q&A"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
It is recommended to support each other. | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: What is a problem? | ||
description: | | ||
A clear and concise description of what you want to happen. | ||
What exactly did you do (or not do) that was effective (or ineffective)? | ||
render: markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: configuration | ||
attributes: | ||
label: Describe the configuration of Fluentd | ||
description: | | ||
If there is the actual configuration of Fluentd, it will help. | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Describe the logs of Fluentd | ||
description: | | ||
If there are error logs of Fluentd, it will help. | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: | | ||
- Fluentd or td-agent version: `fluentd --version` or `td-agent --version` | ||
- Operating system: `cat /etc/os-release` | ||
- Kernel version: `uname -r` | ||
Please describe your environment information. If will help to support. | ||
value: | | ||
- Fluentd version: | ||
- TD Agent version: | ||
- Fluent Package version: | ||
- Docker image (tag): | ||
- Operating system: | ||
- Kernel version: | ||
render: markdown |
1 change: 1 addition & 0 deletions
1
.github/ISSUE_TEMPLATE/bug_report.yaml → .github/ISSUE_TEMPLATE/bug_report.yml
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
1 change: 1 addition & 0 deletions
1
.github/ISSUE_TEMPLATE/feature_request.yaml → .github/ISSUE_TEMPLATE/feature_request.yml
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: "Mark or close stale issues and PRs" | ||
on: | ||
schedule: | ||
- cron: "00 10 * * *" | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-stale: 30 | ||
days-before-close: 7 | ||
stale-issue-message: "This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 7 days" | ||
stale-pr-message: "This PR has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this PR will be closed in 7 days" | ||
close-issue-message: "This issue was automatically closed because of stale in 7 days" | ||
close-pr-message: "This PR was automatically closed because of stale in 7 days" | ||
stale-pr-label: "stale" | ||
stale-issue-label: "stale" | ||
exempt-issue-labels: "waiting-for-triage,bug,enhancement,feature request,pending,work_in_progress,v1,v2" | ||
exempt-pr-labels: "waiting-for-triage,bug,enhancement,feature request,pending,work_in_progress,v1,v2" | ||
exempt-all-assignees: true | ||
exempt-all-milestones: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Test with Ruby head | ||
|
||
on: | ||
schedule: | ||
- cron: '11 14 * * 0' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: true | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | ||
ruby-version: ['head'] | ||
|
||
name: Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby-version }} | ||
- name: Install addons | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: sudo apt-get install libgmp3-dev libcap-ng-dev | ||
- name: Install dependencies | ||
run: bundle install | ||
- name: Run tests | ||
run: bundle exec rake test TESTOPTS="-v --no-show-detail-immediately" |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.