Imrooved the data loading process by downloading the data directly from kaggle using API token and Added the documentation for specifying the objective of this project #167
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: Auto message on PR opened | |
on: | |
pull_request_target: | |
types: [opened] | |
jobs: | |
auto-response: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: derekprior/add-autoresponse@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
respondableId: ${{ github.event.pull_request.node_id }} | |
response: "Our team will soon review your PR. Thanks @${{ github.event.pull_request.user.login }} :)" | |
author: ${{ github.event.pull_request.user.login }} | |
exemptedAuthors: "abhisheks008" |