Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/first-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: First Workflow

on:
workflow_dispatch:
issues:
types: [opened]

jobs:
job1:
runs-on: ubuntu-latest

steps:
- name: Step 1
run: echo "Step 1 complete!"

- name: Step 2
run: echo "Step 2 complete!"

job2:
needs: job1
name: Cowsays
runs-on: ubuntu-latest
steps:
- name: Ship it
uses: mscoutermarsh/cowsays-action@master
with:
text: 'ship ship ship!'
color: 'magenta'

62 changes: 0 additions & 62 deletions .github/workflows/pages.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/Application/src/RazorPagesTestSample/Data/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class Message

[Required]
[DataType(DataType.Text)]
[StringLength(200, ErrorMessage = "There's a 200 character limit on messages. Please shorten your message.")]
[StringLength(250, ErrorMessage = "There's a 250 character limit on messages. Please shorten your message.")] //changed limnit from 200 to 250
public string Text { get; set; }
}
#endregion
Expand Down