Create README
Browse files
README.md
CHANGED
@@ -1,7 +1,39 @@
|
|
1 |
---
|
|
|
2 |
configs:
|
3 |
- config_name: default
|
4 |
data_files:
|
5 |
- split: test
|
6 |
path: data/*.json
|
7 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: apache-2.0
|
3 |
configs:
|
4 |
- config_name: default
|
5 |
data_files:
|
6 |
- split: test
|
7 |
path: data/*.json
|
8 |
+
---
|
9 |
+
|
10 |
+
## Dataset
|
11 |
+
The following dataset contains logs of the GitHub action for a failed workflow of some commits,
|
12 |
+
followed by the commit that passes the workflow successfully. A full list of the datapoints' content is given below.
|
13 |
+
|
14 |
+
|
15 |
+
## Task
|
16 |
+
The intended task for this dataset is to fix the repo to pass GitHub actions workflow.
|
17 |
+
Note that the dataset does not contain repo snapshot.
|
18 |
+
During benchmark, the method clones the necessary repo on the user's local machine.
|
19 |
+
The user's model should correct the files of the repo, and benchmark pushes repo to GitHub, returning the result of the workflow run aggregated by all datapoints.
|
20 |
+
|
21 |
+
## List of items of the datapoint:
|
22 |
+
|
23 |
+
**id**: unique id of the dp
|
24 |
+
**language**: the main language of the repo
|
25 |
+
**repo_name**: original repo name
|
26 |
+
**repo owner**: original repo owner
|
27 |
+
**head_branch**: name of the original branch that the commit was pushed at
|
28 |
+
**contributor**: username of the contributor that committed changes
|
29 |
+
**difficulty**: the difficulty of the problem (accessor-based)
|
30 |
+
**sha_fail**: sha of the failed commit
|
31 |
+
**sha_success**: sha of the successful commit
|
32 |
+
**diff:** the content of diff file between failed and successful commits
|
33 |
+
**logs**: list of dicts [{"log": log, "step_name":step_name}]:
|
34 |
+
- log: logs of the failed job, particular step
|
35 |
+
- step_name: name of the failed step of the job
|
36 |
+
**workflow**: content of the workflow file that has been used to run jobs
|
37 |
+
**workflow_filename**: workflow filename that has been used to run jobs
|
38 |
+
**workflow_name**: name of the workflow that was run
|
39 |
+
**workflow_path**: path to the workflow ".github/workflows/checks.yml"
|